/* ------------------------- */
/* Songbook style */
/* ------------------------- */



/*=========================================
    SONG LIST
=========================================*/

#songList {
    width: 100%;
}


/*=========================================*
* OPEN SONG
*=========================================*/

.song-arrow {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;

    width: 100%;

    color: #4169ff !important;
    text-decoration: none !important;

    font-size: 18px !important;
    font-weight: 500 !important;
}

.song-arrow .open-arrow {
    font-size: 20px !important;
    line-height: 1;

    transition: transform 0.25s ease;
}

.song-arrow:hover {
    opacity: 0.7;
}

.song-arrow:hover .open-arrow {
    transform: translateX(5px);
}



/*=========================================
    SONG ITEM
=========================================*/



.song-item {
    position: relative;
    width: 100%;
}


/*=========================================
    DIAGONAL TOP LINE
=========================================*/

.song-item-line {
    width: 100%;
    height: 7px;

    background-image:
        repeating-linear-gradient(
            45deg,
            #e4e4e4 0,
            #e4e4e4 2px,
            transparent 2px,
            transparent 5px
        );

    opacity: 0.50;
}


/*=========================================
    SONG ROW
=========================================*/

.song-row {
    display: grid;

    grid-template-columns:
        220px
        1fr
        200px;

    align-items: center;

    min-height: 92px;

    padding: 8px 0;
}


/*=========================================
    SONG NUMBER
=========================================*/

.song-number {
    font-size: 64px;

    font-weight: 300;

    line-height: 1;

    color: transparent;

    -webkit-text-stroke:
        1.5px #222;

    letter-spacing: -2px;
}


/*=========================================
    SONG INFORMATION
=========================================*/

.song-info h2 {
    margin: 0 0 8px;

    font-size: 30px;

    font-weight: 600;

    line-height: 1.1;

    color: #111;
}


/*=========================================
    SONG TAGS
=========================================*/

.song-tags {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 0;
}


.song-tags span {
    position: relative;

    color: #777;

    font-size: 16px;

    line-height: 1.4;

    padding-right: 14px;

    margin-right: 10px;
}


.song-tags span:not(:last-child)::after {
    content: "•";

    position: absolute;

    right: 0;

    color: #222;
}


/* First tag */

.song-tags span:first-child {
    color: #111;
}


/*=========================================
    SONG ARROW
=========================================*/

.song-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;

    width: 100%;

    color: #111;
    font-size: 18px;
    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;
}


.song-arrow:hover {
    transform: translateX(8px);

    opacity: 0.65;
}


/*=========================================
    PAGINATION
=========================================*/

.song-pagination {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    margin-top: 70px;

    margin-bottom: 30px;
}



/*=========================================
    PAGINATION BUTTON
=========================================*/

.pagination-button {
    width: 50px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #d8d8d8;

    background: #fff;

    color: #111;

    font-size: 18px;

    border-radius: 4px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.pagination-button:hover {
    background: #f3f3f3;

    border-color: #bbb;
}


/*=========================================
    ACTIVE PAGE
=========================================*/

.pagination-button.active {
    background: #555;

    border-color: #555;

    color: #fff;
}


/*=========================================
    ARROW BUTTONS
=========================================*/

.pagination-arrow {
    border: 0;

    background: #f3f3f3;

    font-size: 28px;
}


.pagination-arrow:hover {
    background: #e8e8e8;
}


/*=========================================
    DISABLED
=========================================*/

.pagination-button.disabled {
    opacity: 0.35;

    cursor: default;

    pointer-events: none;
}


/*=========================================
    DOTS
=========================================*/

.pagination-dots {
    width: 30px;

    text-align: center;

    font-size: 20px;

    color: #555;
}









* {
    box-sizing: border-box;
}

:root {
    --text: #111;
    --muted: #777;
    --line: #e8e8e8;
    --blue: #155eef;
    --pink: #ef4b91;
    --pill: #f4f4f4;
}

body {
    margin: 0;
    background: #f5f7fd;
    color: var(--text);
    font-family: 'Work', sans-serif;
}

.topbar {
    height: 80px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.nav {
    width: min(1100px, calc(100% - 40px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: #111;
    font-size: 2.0rem;
    letter-spacing: -.7px;
}

.logo i {
    color: #6557e8;
    font-style: normal;
}

.logo b {
    color: #111;
    font-weight: 500;
}

.nav{
    gap:50px;
    text-decoration: none;
}

.nav a{
    text-decoration: none;
}

.nav nav {
    display: flex;
    gap: 45px;
    margin-left: 75px;
}

.nav nav a,
.logout {
    color: #111;
    text-decoration: none;
    font-size: 17px;
}

.logout {
    margin-left: auto;
    color: #173cff;
}

.page {
    width: 100%;
    margin: 30px 0px 0px 0px;
    background: #fff !important;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.1);
}

.search-wrap {
    position: relative;
    /* margin: 0 auto 38px; */
}

#searchInput::placeholder {
    font-size: 25px;
    font-weight: 300;
    color: #999;
}

.search-wrap input {
    width: 100%;
    height: 70px;
    border: 2px solid #e9e9e9;
    border-radius: 6px;
    padding: 0 65px 0 37px;
    font-size: 29px;
    outline: none;
}

.search-wrap input:focus {
    border-color: #cfcfcf;
}

.search-wrap input::placeholder {
    color: #aaa;
    font-weight: 600;
}

.search-icon {
    position: absolute;
    right: 24px;
    top: 70%;
    transform: translateY(-54%);
    font-size: 38px;
    line-height: 15;
}

.search-hint {
        margin-top: 10px;;
        font-size: 14px;
        color: #888;
    }

.categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    justify-content: center;
}

.category {
    border: 0;
    background: var(--pill);
    border-radius: 24px;
    padding: 11px 17px;
    color: #555;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
}

.category:hover {
    background: #e9e9e9;
}

.category.active {
    background: #ffe5ef;
    color: #c72b78;
}



/* sorting */

.list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.list-head h1 {
    font-size: 37px;
    font-weight: 400;
    margin: 0;
}


.song-sort {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.song-sort label {
    font-size: 14px;
    color: #777;
}

.song-sort select {
    min-width: 150px;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.song-sort select:focus {
    border-color: #999;
}


/* end */

.song-list {
    /* border-top: 1px dashed #ddd; */
}

.song-row {
    min-height: 72px;
    border-bottom: 1px dashed #ddd;
    display: grid;
    grid-template-columns: 70px 1fr 35px;
    align-items: center;
    gap: 25px;
    cursor: pointer;
}

.song-row:hover {
    background: #ffffff;
}

.song-number {
    font-size: 55px;
    font-weight: 700;
    color: white;
    -webkit-text-stroke: 1px #222;
    line-height: 1;
}

.song-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 7px;
}

.song-meta {
    color: #777;
    font-size: 14px;
}

.song-meta span:not(:last-child)::after {
    content: " • ";
    margin: 0 5px;
    color: #aaa;
}

.song-arrow {
    font-size: 33px;
    font-weight: 200;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 66px;
}

.page-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

.page-btn:hover,
.page-btn.active {
    background: #555;
    color: #fff;
    border-color: #555;
}

.page-btn.wide {
    background: #f5f5f5;
    border: 0;
    font-size: 21px;
}

.ellipsis {
    padding: 0 10px;
}

.message {
    text-align: center;
    color: #888;
    padding: 35px;
    display: none;
}






.section-spacing-xl {
  padding: 140px 0;
}

.section-spacing-lg {
  padding: 120px 0;
}

.section-spacing {
  padding: 100px 0;
}

.section-spacing-sm {
  padding: 80px 0;
}

.section-spacing-xs {
  padding: 65px 0;
}






/* Song Category */


.song-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.song-category {
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px 10px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
}

.song-category span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

.song-category small {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #888;
}

.song-category:hover {
    transform: translateY(-3px);
    border-color: #4169ff;
}

.song-category.active {
    background: #111;
    border-color: #111;
}

.song-category.active span,
.song-category.active small {
    color: #fff;
}
























/*=========================================
    RESPONSIVE
=========================================*/


/*=========================================
    480
=========================================*/

@media (min-width: 330px) and (max-width: 768px) {


    .song-categories {
        grid-template-columns: repeat(2, 1fr);
    }


     .song-row {
        grid-template-columns:
            80px
            1fr
            45px;

        min-height: 85px;
    }


    .song-number {
        font-size: 42px;
    }


    .song-info h2 {
        font-size: 20px;

        margin-bottom: 5px;
    }


    .song-tags span {
        font-size: 12px;
    }


    .song-arrow {
        font-size: 28px;
    }


    .song-pagination {
        gap: 6px;

        margin-top: 45px;
    }


    .pagination-button {
        width: 45px;

        height: 45px;

        font-size: 15px;
    }

    .topbar {
        height: 64px;
    }

    .nav {
        width: calc(100% - 24px);
    }

    .logo {
        font-size: 20px;
    }

    .nav nav {
        gap: 14px;
        margin-left: 25px;
    }

    .nav nav a {
        font-size: 14px;
    }

    .logout {
        font-size: 14px;
    }

    .page {
        margin-top: 18px;
        padding: 20px;
    }

    .search-wrap {
        margin-bottom: 22px;
    }

    .search-wrap input {
        height: 54px;
        font-size: 20px;
        padding-left: 18px;
    }

    .search-icon {
        right: 14px;
        font-size: 30px;
        top:55%;
    }

    .categories {
        justify-content: flex-start;
        gap: 7px;
    }

    .category {
        font-size: 11px;
        padding: 9px 11px;
    }

    .list-head h1 {
        font-size: 29px;
    }

    .sort-button {
        min-width: 130px;
        height: 42px;
        font-size: 12px;
    }

    .song-row {
        grid-template-columns: 54px 2fr;
        gap: 10px;
        min-height: 75px;
    }

    .song-number {
        font-size: 34px;
    }

    .song-title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .song-meta {
        font-size: 11px;
        line-height: 1.6;
    }


    .pagination {
        margin-top: 35px;
        gap: 4px;
    }
     .song-number {
        font-size: 52px;
    }
    .song-arrow {
        margin-left: 62px;
        color: #4169ff !important;
    }


    .song-info h2 {
        font-size: 25px;
    }


    .song-tags span {
        font-size: 14px;
    }

    .section-spacing-xl {
    padding: 120px 0;
  }
  .section-spacing-lg {
    padding: 100px 0;
  }
  .section-spacing {
    padding: 80px 0;
  }
  .section-spacing-sm {
    padding: 60px 0;
  }
  .section-spacing-xs {
    padding: 50px 0;
  }

}














/*=========================================
    768
=========================================*/

@media (min-width: 640px) and (max-width: 767px) {

    .song-categories {
        grid-template-columns: repeat(2, 1fr);
    }


     .song-row {
        grid-template-columns:
            80px
            1fr
            45px;

        min-height: 85px;
    }


    .song-number {
        font-size: 42px;
    }


    .song-info h2 {
        font-size: 20px;

        margin-bottom: 5px;
    }


    .song-tags span {
        font-size: 12px;
    }


    .song-arrow {
        font-size: 28px;
    }


    .song-pagination {
        gap: 6px;

        margin-top: 45px;
    }


    .pagination-button {
        width: 45px;

        height: 45px;

        font-size: 15px;
    }

    .topbar {
        height: 64px;
    }

    .nav {
        width: calc(100% - 24px);
    }

    .logo {
        font-size: 20px;
    }

    .nav nav {
        gap: 14px;
        margin-left: 25px;
    }

    .nav nav a {
        font-size: 14px;
    }

    .logout {
        font-size: 14px;
    }

    .page {
        margin-top: 18px;
        padding: 20px;
    }

    .search-wrap {
        margin-bottom: 22px;
    }

    .search-wrap input {
        height: 54px;
        font-size: 20px;
        padding-left: 18px;
    }

    .search-icon {
        right: 14px;
        font-size: 30px;
        top:55%;
    }

    .categories {
        justify-content: flex-start;
        gap: 7px;
    }

    .category {
        font-size: 11px;
        padding: 9px 11px;
    }

    .list-head h1 {
        font-size: 29px;
    }

    .sort-button {
        min-width: 130px;
        height: 42px;
        font-size: 12px;
    }

    .song-row {
        grid-template-columns: 54px 2fr;
        gap: 10px;
        min-height: 75px;
    }

    .song-number {
        font-size: 34px;
    }

    .song-title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .song-meta {
        font-size: 11px;
        line-height: 1.6;
    }


    .pagination {
        margin-top: 35px;
        gap: 4px;
    }
     .song-number {
        font-size: 52px;
    }
    .song-arrow {
        margin-left: 62px;
        color: #4169ff !important;
    }


    .song-info h2 {
        font-size: 25px;
    }


    .song-tags span {
        font-size: 14px;
    }

    .section-spacing-xl {
    padding: 120px 0;
  }
  .section-spacing-lg {
    padding: 100px 0;
  }
  .section-spacing {
    padding: 80px 0;
  }
  .section-spacing-sm {
    padding: 60px 0;
  }
  .section-spacing-xs {
    padding: 50px 0;
  }

}




@media (min-width: 768px) and (max-width: 1023px) {

    .song-categories {
        grid-template-columns: repeat(2, 1fr);
    }



}











