@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('img/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}


a{
    color: #465bc1;
    text-decoration: none;
    font-weight: 500;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    font-size: 40px;
    /* column-gap: 40px; */
    flex-direction: row;
}
.title{
    width: 100%;
    text-align: center;
    font-weight: 500;
}
.logo{
    width: 200px;
    margin: 0 auto;
    position: relative;
    display: block;
}
.menu{
    margin: 0 auto;
    background-color: #a02d23;
    margin-top: 10px;
    width: 94%;
    max-width: 750px;
    /*padding: 10px 20px;*/
    display: flex;
    justify-content: space-around;
    border-radius: 25px;
    border: 1px solid #a02d23;
    box-sizing: border-box;
    color: white;
    padding-left: 0px;
}
.menu li{
    list-style-type: none;
    width: 25%;
    text-align: center;
    transition: background-color .3s ease-in-out;
}

.menu a{
    color: white;
    text-decoration: none;
    padding: 10px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    user-select: none;
}
.menu li:first-child{
    border-radius: 25px 0px 0px 25px;
}
.menu li:last-child{
    border-radius: 0px 25px 25px 0px;
}

.menu li:hover{
    background-color: #741c14;
}
h1 {
    color: #2f3246;
}
.content {
    margin: 0 auto;
    /*background-color: #fffce980;*/
    background-color: #ffffff94;
    margin-top: 30px;
    width: 94%;
    max-width: 800px;
    padding: 10px 30px 30px 30px;
    border-radius: 25px;
    border: 1px solid #a02d23;
    font-size: 17px;
    box-shadow: 3px 3px 5px 1px #faebd7;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 5px;
    background-color: #a02d23;
    z-index: 9;
}

.footer-links{
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    padding: 10px 20px;
    font-size: 17px;
    text-align: center;
    display: flex;
    justify-content: center;
    color: white;
}

.footer-links div{
    margin: 0px 20px;
}

.caption{
    text-align: center;
    font-size: 12px;
}

.active{
    background-color: #741c14;
}
.booking-list{
    font-size: 22px;
    width: 100%;
    padding: 10px 20px;
    background-color: antiquewhite;
    box-sizing: border-box;
    margin-bottom: 20px;
    font-weight: 600;
    border-radius: 10px;
}
.booking-list-time {
    display: block;
    font-size: 14px;
    color: gray;
}
.booking-list-note {
    display: block;
    font-size: 16px;
    font-weight: 400;
}

.band-members {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 20px;
}
.member-row {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    align-items: center;
}

.member-col:first-child {
    flex: 0 0 auto;
}

.member-col:last-child {
    flex: 1;
}

.member-name{
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.member-type{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.member-description {
    font-size: 14px;
    width: 100%;
    /* text-align: center; */
    background-color: antiquewhite;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}
.member-img{
    width: 200px;
    height: 240px;
    overflow: hidden;
}

.member-img img{
    width: 200px;
    height: 240px;
}


.field {
    width: 100%;
    box-sizing: border-box;
    background-image: linear-gradient(#585b72, #827e99), linear-gradient(#000000, #000000);
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
    float: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    background-position: center bottom, center calc(100% - 0px);
    background-repeat: no-repeat;
    background-size: 0 1px, 100% 1px;
    padding: 0;
    transition: background 0.1s ease-out 0.1s;
    min-height: 38px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    padding: 0px 10px;
}
.field:focus {
    background-size: 100% 2px, 100% 1px;
    outline: 0 none;
    transition-duration: 0.3s;
}
.textarea-field{
    border: 1px solid #000000;
    border-bottom: 0px;

    padding: 10px 10px;
    background-color: white;
}

.button {
    width: 100%;
    cursor: pointer;
    box-shadow: 0 2px 2px rgba(116, 96, 238, 0.05);
    border-radius: 60px;
    padding: 0.75rem 1.5rem;
    font-size: 1.09375rem;
    line-height: 1.5;
    color: #fff;
    background-color: #a02d23;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 20px 0px 20px 0px;
}
.button:hover {
    color: #fff;
    background-color: #741c14;
}

.successfully {
    width: 100%;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 600;
    color: green;
}
.error{
    width: 100%;
    text-align: center;
    padding: 30px;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 600;
    color: red;
}

.private-page-link {
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 10;
}
.csv-table {
    font-family: Arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.csv-table th, .csv-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;

}

.csv-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.csv-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.csv-table tr:hover {
    background-color: #e6e6e6;
}
a.anchor-links {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
}
.footer-links div a{
    color: white;
}


@media (max-width: 700px) {
    .member-row {
        flex-direction: column;
    }
    .band-members {
        row-gap: 50px;
    }
    .header {
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .menu a {
        padding: 6px;
        font-size: 14px;
    }
}



.edit-form, .add-form{
    display: flex;
    flex-wrap: wrap;
    column-gap: 2%;
    row-gap: 10px;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #a02d23;
    background-color: rgba(160, 45, 35, 0.06);
}


.edit-field{
    padding: 10px 15px;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    width: 32%;
    box-sizing: border-box;
}

.form-field-box .edit-field {
    width: 100%;
}
.form-field-box{
    width: 32%;
}
.form-field-label{
    font-size: 14px;
}

.edit-textarea{
    width: 100%;
}

.edit-button ,.add-button, .delete-button{
    background-color: #12bf3f;
    width: 100px;
    margin: 0px;
    padding: 10px 15px;
    line-height: 1;
    font-family: Poppins;
}

.delete-button{
    background-color: #a02d23;
}
.edit-button:hover ,.add-button:hover{
    background-color: #0f9d54;
}

.edit-hr{
    width: 100%;
    height: 1px;
    background-color: #e5d5d3;
    margin: 10px 0px 20px 0px;
}


.video-previews{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 10px;
    /*row-gap: 20px;*/
    /*column-gap: 2%;*/
    /*row-gap: 5px;*/
}
.video-preview{
    width: 50%;
    box-sizing: border-box;
    border: 2px solid white;
    background-color: white;
    position: relative;
    max-height: 205px;
    overflow: hidden;

}

.video-preview a{
    color: white;
}

.video-preview img{
    width: 100%;
    display: block;

    opacity: 0.85;
    transition: opacity .3s ease-in-out;
}

.video-preview img:hover{
    opacity: 1;
}

.video-title {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0px;
    background-color: #00000057;
}

.home-checkbox-container{
    display: flex;
    width: 32%;
    align-items: center;
    justify-content: center;
}










.calc-radio-box {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    justify-content: space-between;
    gap: 10px;

}
.calc-radio-1 {
    display: none !important;
}
.calc-radio-1 + label {
    width: 100%;
    text-align: center;
    display: flex;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 16px;
    /*font-weight: 500;*/
    user-select: none;
    background-color: rgb(255, 255, 255);
    color: #000000;
    line-height: 20px;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;

    padding: 10px 15px;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
}
/*.calc-radio-1 + label:hover {*/
/*    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, .1);*/
/*}*/
.calc-radio-1:checked + label {
    background-color: #e1fbe1;
    /*background-image: linear-gradient(180deg, #5bab95 0, #478171 100%);*/
    color: #000000;
    border: 1px solid #97bf32;
}

.calc-radio-btn{
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 10%;
    border: 1px solid #cbcbcb;
}

input[type=radio].calc-radio-1 + label .calc-radio-btn{
    border-radius: 50%;
}

.calc-radio-1:checked + label .calc-radio-btn{
    background-color: #23ab45;
    border: 1px solid #23ab45;
}

.calc-radio-1:checked + label .calc-radio-btn svg{
    display: block;
}

.calc-radio-1 + label .calc-radio-btn svg{
    display: none;
}

.button-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.button-box {
    display: flex;
    gap: 10px;
}
.button-up-down-box {
    display: flex;
    gap: 10px;
}
.form-up, .form-down{
    background-color: azure;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid #7b8f9a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-up:hover, .form-down:hover{
    background-color: #d4e8e8;
}


.edit-switch-box{
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}
.edit-switch {
    user-select: none;
    width: 120px;
    display: flex;
    border: 1px solid #a02d23;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: #fff7f4;
    border-radius: 10px;
    font-weight: 500;
    color: #a02d23;
    cursor: pointer;
    transition: all 0.3s ease;
}
.edit-switch:hover{
    background-color: #ffe0d5;
}
.e-s-active{
    background-color: #a02d23 !important;
    color: white !important;
}

.subscribe-to-calendar-note {
    display: none;
    font-size: 14px;
    padding: 15px;
    border: 1px solid #ddb7b4;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #ffffff;

}

.subscribe-to-calendar-note span {
    display: block;
    padding: 3px 20px;
    border: 1px solid #f1eceb;
    background-color: #f1eceb;
    cursor: text;
    box-sizing: border-box;
    /* text-align: left; */
    margin-top: 5px;
    text-align: center;
}
.subscribe-doesnt-work{
    font-size: 12px;
    margin-bottom: 10px;
}

.subscribe-doesnt-work span{
    color: #465bc1;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 800px) {
    .edit-form, .add-form {
        flex-direction: column;
    }
    .home-checkbox-container{
        width: 100%;
    }
    .edit-field{
        width: 100%;
    }
    .form-field-box{
        width: 100%;
    }
    .edit-button, .add-button, .delete-button {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }
    .menu li {
        width: 100%;
    }
    .menu li:first-child {
        border-radius: 25px 25px 0px 0px;
    }
    .menu li:last-child {
        border-radius: 0px 0px 25px 25px;
    }
}

@media (max-width: 600px) {
    .video-preview{
        width: 100%;
    }
}



.sxw-nxt-wrapper {
    display: block;
    text-align: center;
    margin: 20px 0;
    box-sizing: border-box;
}

.sxw-nxt-wrapper *,
.sxw-nxt-wrapper *::before,
.sxw-nxt-wrapper *::after {
    box-sizing: border-box;
}

.sxw-nxt-message {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffe8c4;
    color: #a02d23;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid #d4af37;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.sxw-nxt-message:hover {
    background-color: #ffd592;
    /* transform: translateY(-1px); */
}

.sxw-nxt-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    max-width: 380px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 9999;
}

.sxw-nxt-message:hover .sxw-nxt-tooltip,
.sxw-nxt-message:focus .sxw-nxt-tooltip,
.sxw-nxt-message:focus-within .sxw-nxt-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sxw-nxt-tooltip-inner {
    position: relative;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 16px 20px;
    border: 2px solid #d4af37;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.5;
}

.sxw-nxt-tooltip-inner::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #d4af37 transparent transparent transparent;
}

.sxw-nxt-tooltip-inner::before {
    content: '';
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    z-index: 1;
}

.sxw-nxt-tooltip-title {
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    padding: 0 0 8px 0;
    border-bottom: 1px solid #eaeaea;
}

.sxw-nxt-tooltip-row {
    margin: 4px 0;
    font-size: 14px;
    color: #333333;
}

.sxw-nxt-tooltip-label {
    font-weight: bold;
    color: #666666;
    margin-right: 6px;
}

.sxw-nxt-tooltip-value {
    color: #1a1a1a;
}

.sxw-nxt-tooltip-info {
    margin: 10px 0 0 0;
    padding: 10px 0 0 0;
    border-top: 1px solid #eaeaea;
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
}

.sxw-nxt-tooltip-link {
    margin: 10px 0 0 0;
}

.sxw-nxt-tooltip-link a {
    display: inline-block;
    color: #d4af37 !important;
    text-decoration: underline;
    font-weight: bold;
    font-size: 14px;
}

.sxw-nxt-tooltip-link a:hover {
    color: #b8941f !important;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .sxw-nxt-message {
        font-size: 14px;
        padding: 10px 16px;
    }

    .sxw-nxt-tooltip {
        min-width: 240px;
        max-width: 90vw;
    }
}
