/* CSS RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* CSS RESET */


/* STYLE UTAMA */
body {
    background: linear-gradient(to right, #0968e5, #091970);
    font-family: 'Lucida Console', Arial, Helvetica, sans-serif;
}

/* HEADER */
header {
    display: flex;
    /*agar elemen didalam header dapat diatur secara fleksibel*/
    justify-content: space-between;
    /*membuat elemen left dan right-header */
    align-items: center;
    /*mengatur posisi elemen secara fertikal, dengan value center maka akan membuat child element menyesuaikan tinggi -nya  sesuai dengan konten didalamnya*/

    padding: 20px 36px;
    height: 100px;
    box-sizing: border-box;
    background: linear-gradient(to right, #000328, #00458e);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 5px #FFA101;
    /* border-bottom: 3px solid #FFA101; */
}

.logo {
    width: 125px;
    transition: transform 0.5s ease-in-out, width 0.5s;
    /* margin-left: 30px; */
    /* border: 1px solid white; */
}

.logo:hover {
    transform: rotate(8deg);
    width: 170px;
}

.left-header,
.right-header {
    width: auto;
    /*agar lebar dari left dan right-header mengikuti konten didalamnya class logo dan btn didalamnya)*/
    /* border: 1px solid white; */
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}

.right-header {
    text-align: right;
    /* border: 1px solid white; */
    /* position: absolute;
	top: 40px;
	right: 35px; */
}

.right-header a {
    width: 40px;
    margin-bottom: 5px;
    display: inline-flex;
    /**/
    align-items: center;
    /*membuat elemen yang dibungkus di dalam a berada di tengah secara horizontal*/
    /* margin-top: 10px; */
    padding: 5px 5px;
    background-color: #FFA101;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: width 0.7s ease-in-out, background-color 0.3s ease-in-out;
    /* animasi transisi*/
    /* position: absolute; */
    border: 1px solid white;
}

.right-header a span {
    margin-left: 10px;
    white-space: nowrap;
    /*mencegah teks membuat baris baru ketika ukuran berubah disaat hover*/
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    overflow: hidden;
    /*mencegah teks meluber keluar dari elemen disaat elemen dalam keadaan normal(tidak hover)*/
}

.right-header a:hover span {
    opacity: 1;
}

/* ketika kursor diatas elemen, maka warnanya akan berubah */
.btn-listboard:hover,
.btn-listmake:hover {
    width: 193px;
    background-color: #FFFFFF;
    color: #FFA101;
    border: 1px solid #FFA101;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

/* HEADER */

/* MAIN */
main {
    margin: 50px auto;
    padding: 35px;
    width: 95%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.5);
    /* putih 50% transparan */
    border: 1px solid white;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-sizing: border-box;
    font: 20px "arial";
}

.input-user {
    /* border: 1px solid black; */
    margin-bottom: 35px;
}

.input-user input {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

main p:first-child {
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
}

.input-user .form-group select {
    font: bold 15px 'Quicksand', "lucida console", Arial, Helvetica, sans-serif;
    width: 120px;
    height: 40px;
    margin-right: 0;
    margin-bottom: 0;
    background-color: #FFA101;
    border-radius: 5px;
    border: 1px solid white;
    color: white;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    box-sizing: border-box;
    padding: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input-user .form-group select:hover {
    background-color: white;
    border: 1px solid #FFA101;
    color: #FFA101;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    /* box-sizing: border-box; */
}

.input-user select:focus {
    background-color: white;
    border: 1px solid #FFA101;
    color: #FFA101;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    /* box-sizing: border-box; */
}

.input-user button,
.search-music .btn-search {
    font: bold 15px 'Quicksand', "lucida console", Arial, Helvetica, sans-serif;
    width: 120px;
    height: 40px;
    background-color: #FFA101;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    cursor: pointer;
    /*mengubah kursor menjadi pointer saat hover*/
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-sizing: border-box;
}

.input-user button:hover,
.search-music .btn-search:hover {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    background-color: green;
    color: white;
    /* border: 1px solid white; */
    border: 1px solid #285185;
}

/* .search-music {
	border: 1px solid black;
} */

.scresult-table {
    border: 1px solid white;
    margin-top: 30px;
    padding: 15px;
    width: 100%;
    height: 700px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.5);
    /* putih 50% transparan */
    /* box-shadow: 2px 2px 2px rgba(0,0,0,0.8); */
    margin-bottom: 5px;
    position: relative;
    overflow-y: auto;
}

/* .scresult-table .song-layout {
	padding: 10px;
	width: 100%;
	height: 120px;
	border-radius: 10px;
	box-sizing: border-box;
	background-color: white;
	border: 1px solid gray;
	transition: border 0.3s, box-shadow 0.3s;
}

.scresult-table .song-layout:hover {
	border: 1px solid white;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.8);
} */

main p:last-child {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
}

/*  */
/* Container hasil */
.music-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Card utama */
.music-card {
    width: 100%;
    padding: 20px;
    margin-bottom: 5px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow .3s;
    box-sizing: border-box;
}

.music-card:hover {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);

}

.music-card-left {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.msc-cover {
    width: 90px;
    height: 90px;
    background: #eee;
    border: 1px solid #aaa;
    border-radius: 5px;
    margin-right: 20px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.msc-cover:hover {
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 1);
    transform: scale(1.03);
}

.music-card-center {
    flex: 1;
    padding-left: 20px;
    font-family: 'Quicksand', sans-serif;
}

.music-card-center h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
}

.music-card-center p {
    font-size: 18px;
    margin-bottom: 5px;
    color: #555;
}

.music-card-center p:last-child {
    font-family: 'Quicksand', sans-serif;
    ;
    font-size: 18px;
}

.music-card-center b {
    font-size: 18px;
    color: #333;
}

.music-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Quicksand', sans-serif;

}

/* Tombol LINKS */
.music-card-right button {
    width: 90px;
    padding: 8px 10px;
    font-size: 14px;
    background: white;
    border: 2px solid #FFA101;
    color: #FFA101;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.music-card-right button:hover {
    background: #FFA101;
    color: white;
}

.msc-link-icons {
    margin-top: 8px;
    display: flex;
    width: 90px;
    box-sizing: border-box;
    padding: 2px;
    gap: 4px;
    align-items: center;
    border: 1px solid #FFA101;
    border-radius: 5px;
    display: none;
    /* default hidden */
}

.link-icon img {
    cursor: pointer;
    transition: 0.2s;
}

.link-icon img:hover {
    transform: scale(1.15);
}

.pagination {
    text-align: center;
    margin-top: 20px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 15px;
}

.pagination button {
    font-family: "Quicksand", sans-serif;
    font-size: 15px;
    /* width: 50px;	 */
    padding: 10px 30px;
    margin: 0 3px;
    border: 1px solid #555;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.pagination button:hover {
    background: #FFA101;
    color: white;
}

.pagination .active-page {
    background: #FFA101;
    color: white;
    border-color: #FFA101;
}

/*  */
/* MAIN */

/* MAIN BUATLIST */
.form-group-bl {
    text-align: left;
    font-size: medium;
    /* font: 20px 'Quicksand', Arial, Helvetica, sans-serif; */
    /* border: 1px solid black; */
}

.form-group-bl label {
    display: inline-block;
    font: 20px 'Quicksand', Arial, Helvetica, sans-serif;
    margin: 8px 0 3px;
}

.input-theme,
.input-name {
    border-radius: 15px;
    padding: 10px;
    width: 98%;
    height: 30px;
    border: 1px solid gray;
    transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    font-size: large;
}

.input-user .form-group-bl select {
    font: bold 15px 'Quicksand', "lucida console", Arial, Helvetica, sans-serif;
    width: 250px;
    height: 40px;
    margin-right: 10px;
    margin-bottom: 15px;
    background-color: #FFA101;
    border-radius: 5px;
    border: 1px solid white;
    color: white;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    box-sizing: border-box;
    padding: 4px;
}

.input-user .form-group-bl select:hover {
    background-color: white;
    border: 1px solid #FFA101;
    color: #FFA101;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    /* box-sizing: border-box; */
}

.input-user select:focus {
    background-color: white;
    border: 1px solid #FFA101;
    color: #FFA101;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    /* box-sizing: border-box; */
}

.form-group-bl select:focus {
    background-color: white;
    color: #FFA101;
    border: 1px solid #FFA101;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
}

.input-search {
    border-radius: 15px;
    margin: 0 4px;
    padding: 10px;
    width: 75%;
    height: 20px;
    border: 1px solid gray;
    transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    font-size: large;
}

.form-group-bl button {
    font: bold 15px 'Quicksand', "lucida console", Arial, Helvetica, sans-serif;
    width: 79px;
    height: 50px;
}

.input-theme:hover,
.input-name:hover,
.input-search:hover {
    border: 1px solid #FFA101;
    box-shadow: 0 0 2px black;
}

.umusiclist {
    text-align: center;
}

.umusiclist p {
    font: 20px 'Quicksand', Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}

.music-list {
    display: flex;
    justify-content: center;
}

.form-group-bl .create {
    display: block;
    margin: 10px auto 0;
}

.musicone,
.musictwo,
.musicthree,
.musicfour,
.musicfive {
    margin-right: 5px;
    padding: 10px;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 1px solid black;
}

/* .search-music {
	border: 1px solid black;
} */

.search-music .dd-search {
    font: bold 15px 'Quicksand', "lucida console", Arial, Helvetica, sans-serif;
    width: 190px;
    background-color: #FFA101;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    cursor: pointer;
    /*mengubah kursor menjadi pointer saat hover*/
    margin-bottom: 15px;
}

.search-music .dd-search:hover {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    background-color: white;
    color: #FFA101;
    /* border: 1px solid white; */
    border: 1px solid #FFA101;
}

.search-music .dd-search:focus {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    background-color: white;
    color: #FFA101;
    /* border: 1px solid white; */
    border: 1px solid #FFA101;
}

.search-music select {
    font: bold 15px 'Quicksand', "lucida console", Arial, Helvetica, sans-serif;
    width: 100px;
    height: 40px;
    margin-right: 10px;
    margin-bottom: 15px;
    background-color: #FFA101;
    border-radius: 5px;
    border: 1px solid white;
    color: white;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    box-sizing: border-box;
    padding: 4px;
}

.search-music select:hover {
    background-color: white;
    border: 1px solid #FFA101;
    color: #FFA101;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    /* box-sizing: border-box; */
}

.search-music select:focus {
    background-color: white;
    border: 1px solid #FFA101;
    color: #FFA101;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    /* box-sizing: border-box; */
}

/* MAIN BUATLIST */

/* FOOTER */
footer {
    color: #FFFFFF;
    font-size: 15px;
    padding: 20px 20px 8px;
    background-color: #1a1a1a;
    box-shadow: 0px -5px 4px #404040;
    border-radius: 15px 15px 0 0;
    /* border-top: 3px solid #333333; */
}

footer p:first-child {
    text-decoration: underline;
}

.fsa {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* border: 1px solid white; */
}

.sosmed-group,
.about {
    width: 43%;
    /* border: 1px solid white; */
}

.sosmed-chri,
.sosmed-thor,
.sosmed-reva {
    display: flex;
    margin-top: 5px;
    /* border: 1px solid white; */
}

.sosmed-chri img,
.sosmed-thor img,
.sosmed-reva img {
    margin-right: 5px;
    transition: transform 0.3s;
}

.sosmed-chri img:hover,
.sosmed-thor img:hover,
.sosmed-reva img:hover {
    transform: scale(1.2);
}

.about a {
    color: inherit;
    text-decoration: inherit;
}

/* FOOTER */

/* MEDIA QUERY */
/* Tablet */
@media (max-width: 768px) {

    /* HEADER */
    header {
        padding: 15px 20px;
        height: auto;
        min-height: 80px;
    }

    .logo {
        width: 110px;
    }

    .logo:hover {
        width: 140px;
    }

    /* MAIN */
    main {
        width: 95%;
        padding: 25px;
        margin: 30px auto;
        font-size: 18px;
    }

    .input-user .form-group {
        gap: 8px;
    }

    .input-user .form-group select {
        width: 100px;
        height: 38px;
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 0;
    }

    .input-user button {
        width: 100px;
        height: 38px;
        font-size: 14px;
    }

    .scresult-table {
        height: auto;
        min-height: 600px;
        padding: 12px;
    }

    .music-card {
        padding: 15px;
    }

    .music-card-left {
        width: 80px;
        height: 80px;
    }

    .msc-cover {
        width: 80px;
        height: 80px;
    }

    .music-card-center {
        padding-left: 15px;
    }

    .music-card-center h3 {
        font-size: 16px;
    }

    .music-card-center p {
        font-size: 14px;
    }

    .music-card-center b {
        font-size: 14px;
    }

    .music-card-right button {
        width: 80px;
        font-size: 13px;
        padding: 6px 8px;
    }

    .msc-link-icons {
        width: 80px;
    }

    .pagination {
        position: static;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .pagination button {
        padding: 8px 20px;
        font-size: 14px;
        margin: 0 2px;
    }

    /* FOOTER */
    .fsa {
        flex-direction: column;
        gap: 20px;
    }

    .sosmed-group,
    .about {
        width: 100%;
    }
}

/* Mobile Large */
@media (max-width: 480px) {

    /* HEADER */
    header {
        padding: 12px 15px;
        height: auto;
        min-height: 70px;
        flex-wrap: wrap;
    }

    .left-header {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .right-header {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: row;
        gap: 10px;
    }

    .logo {
        width: 100px;
    }

    .logo:hover {
        width: 120px;
    }

    /* MAIN */
    main {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
        font-size: 16px;
    }

    .input-user p:first-child {
        font-size: 18px;
        text-align: center;
    }

    .form-group {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .input-user .form-group select {
        width: calc(50% - 4px);
        min-width: 100px;
        height: 42px;
        font-size: 14px;
        margin-right: 0;
        margin-bottom: 0;
    }

    .input-user button {
        width: calc(50% - 4px);
        min-width: 100px;
        height: 42px;
        font-size: 14px;
        margin-top: 10px;
    }

    .scresult-table {
        height: auto;
        min-height: 500px;
        padding: 10px;
        margin-top: 20px;
    }

    .music-card {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        text-align: center;
    }

    .music-card-left {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    .msc-cover {
        width: 120px;
        height: 120px;
        margin-right: 0;
    }

    .music-card-center {
        padding-left: 0;
        width: 100%;
        margin-bottom: 15px;
    }

    .music-card-center h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .music-card-center p {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .music-card-center b {
        font-size: 14px;
    }

    .music-card-right {
        width: 100%;
        align-items: center;
    }

    .music-card-right button {
        width: 120px;
        font-size: 14px;
        padding: 8px 10px;
    }

    .msc-link-icons {
        width: auto;
        justify-content: center;
    }

    .pagination {
        position: static;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .pagination button {
        padding: 8px 15px;
        font-size: 13px;
        margin: 0 2px;
    }

    main p:last-child {
        font-size: 11px;
        text-align: center;
        padding: 0 10px;
    }

    /* FOOTER */
    footer {
        padding: 15px;
    }

    .fsa {
        flex-direction: column;
        gap: 20px;
    }

    .sosmed-group,
    .about {
        width: 100%;
    }

    .about p {
        font-size: 12px;
    }

    .about p:first-child {
        font-size: 16px;
    }

    /* MAIN BUATLIST */
    .musicone,
    .musictwo,
    .musicthree,
    .musicfour,
    .musicfive {
        width: 55px;
        height: 55px;
    }

    .input-name,
    .input-theme {
        width: 95%;
        height: 25px;
    }

    .input-search {
        width: 70%;
        height: 25px;
    }
}

/* Mobile Small */
@media (max-width: 375px) {

    /* HEADER */
    header {
        padding: 10px 12px;
        height: auto;
        min-height: 65px;
    }

    .logo {
        width: 90px;
    }

    .logo:hover {
        width: 110px;
    }

    .right-header a {
        width: 30px;
        height: 30px;
        padding: 3px;
    }

    .right-header a img {
        width: 20px;
        height: 20px;
    }

    .btn-listboard:hover,
    .btn-listmake:hover {
        width: 35px;
    }

    /* MAIN */
    main {
        width: 96%;
        padding: 15px;
        margin: 15px auto;
        font-size: 14px;
    }

    .input-user p:first-child {
        font-size: 16px;
    }

    .input-user .form-group select {
        width: calc(50% - 4px);
        height: 40px;
        font-size: 13px;
    }

    .input-user button {
        width: calc(50% - 4px);
        height: 40px;
        font-size: 13px;
    }

    .scresult-table {
        padding: 8px;
        margin-top: 15px;
    }

    .music-card {
        padding: 12px;
    }

    .music-card-left {
        width: 100px;
        height: 100px;
    }

    .msc-cover {
        width: 100px;
        height: 100px;
    }

    .music-card-center h3 {
        font-size: 15px;
    }

    .music-card-center p {
        font-size: 13px;
    }

    .music-card-center b {
        font-size: 13px;
    }

    .music-card-right button {
        width: 100px;
        font-size: 13px;
        padding: 7px 8px;
    }

    .pagination button {
        padding: 7px 12px;
        font-size: 12px;
        margin: 0 1px;
    }

    main p:last-child {
        font-size: 10px;
    }

    /* FOOTER */
    footer {
        padding: 12px;
        font-size: 13px;
    }

    .about p {
        font-size: 11px;
    }

    .about p:first-child {
        font-size: 15px;
    }

    /* MAIN BUATLIST */
    .musicone,
    .musictwo,
    .musicthree,
    .musicfour,
    .musicfive {
        width: 50px;
        height: 50px;
    }

    .input-name,
    .input-theme {
        width: 93%;
        height: 22px;
    }

    .input-search {
        width: 65%;
        height: 22px;
    }
}

/* Mobile Extra Small */
@media (max-width: 320px) {
    header {
        padding: 8px 10px;
    }

    .logo {
        width: 80px;
    }

    .logo:hover {
        width: 95px;
    }

    main {
        width: 97%;
        padding: 12px;
    }

    .input-user .form-group select {
        width: 100%;
        margin-bottom: 8px;
    }

    .input-user button {
        width: 100%;
    }

    .music-card-left {
        width: 90px;
        height: 90px;
    }

    .msc-cover {
        width: 90px;
        height: 90px;
    }

    .music-card-center h3 {
        font-size: 14px;
    }

    .music-card-center p {
        font-size: 12px;
    }

    .pagination button {
        padding: 6px 10px;
        font-size: 11px;
    }
}

.input-user .form-group .search-button {
    margin-top: -1px;
}

/* STYLE UTAMA */