body {
    background-image: url('https://mir-s3-cdn-cf.behance.net/project_modules/fs/84e1ad89065245.5de92722d6360.png');
    background-size: 100vw 100vh;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow-y: auto; 
    min-height: 100vh;
}

.schedule-container {
    background: rgba(255, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.header-title {
    text-shadow: 3px 3px 8px rgb(245, 245, 245);
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    padding: 15px;
    margin: 90px auto 20px;
    color: rgb(255, 255, 255);
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 10px 10px 0 0;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 8px rgb(0, 0, 0);
    width: fit-content;
}

.menu {
    background: rgba(34, 34, 34, 0.7);
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu ul li {
    margin: 0 20px;
}

.menu ul li.nav-items {
    margin-left: auto;
}

.nav-link.shadow-box {
    text-decoration: none;
    color: rgb(209, 0, 0);
    font-size: 18px;
    padding: 12px 20px;
    transition: 0.3s;
    border-radius: 5px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    box-shadow: 3px 3px 10px rgba(255, 255, 255, 0.3);
}

.nav-link.shadow-box:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-shadow: 3px 3px 7px rgba(255, 255, 255, 0.6);
    box-shadow: 4px 4px 12px rgb(224, 0, 0);
}

header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    color: rgb(255, 255, 255);
    margin: 60px auto;
}

th {
    background-color: rgba(255, 215, 0, 0.8);
    color: black;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid #000000;
}

td {
    padding: 5px;
    text-align: center;
    border-bottom: 2px solid rgb(255, 153, 0);
}

tr:hover {
    background-color: rgba(255, 255, 255, 0.411);
    transition: 0.3s;
}

.jobdesk {
    font-weight: bold;
    color: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 5px;
}

.jobdesk.livechat {
    background-color: rgba(50, 205, 50, 0.8);
}

.jobdesk.withdraw {
    background-color: rgba(255, 69, 0, 0.8);
}

.jobdesk.deposit {
    background-color: rgba(30, 144, 255, 0.8);
}

@media screen and (max-width: 600px) {
    th, td {
        font-size: 14px;
    }

    .menu ul {
        flex-direction: column;
        text-align: center;
    }
}

.anime-dancer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 400px;
    height: auto;
    z-index: 1000;
    pointer-events: none;
    animation: goyang 2.5s infinite alternate ease-in-out;
}

@keyframes goyang {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-20px) rotate(3deg) scale(1.05); }
    100% { transform: translateY(0px) rotate(-3deg) scale(1); }
}

.title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    padding: 10px 15px;
    margin: 60px auto 20px;
    width: fit-content;
    background: linear-gradient(90deg, #ffcc00, #ff6666);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease-in-out;
    animation: fadeIn 1s ease-in-out;
}

.title:hover {
    transform: scale(1.05);
    box-shadow: 0 7px 20px rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-link {
    background: linear-gradient(45deg, #ff0000, #ff8000);
    color: white !important;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.dashboard-link:hover {
    background: linear-gradient(45deg, #a200ff, #ff0000);
    transform: scale(1.05);
    box-shadow: 0 7px 20px rgba(255, 69, 0, 0.7);
}

.logout-link {
    background: linear-gradient(45deg, #ff4141, #c40000);
    color: white !important;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.logout-link:hover {
    background: linear-gradient(45deg, #c40000, #ff4141);
    transform: scale(1.05);
    box-shadow: 0 7px 20px rgba(255, 0, 0, 0.7);
}

@keyframes glowBorder {
    0% {
        background-position: 0% 50%;
    }
}


.form-container {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 30px;
}

.form-container input {
    padding: 10px;
    margin: 5px;
    width: 200px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.form-container button {
    padding: 10px 20px;
    background: #28a745;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 16px;
}

.form-container button:hover {
    background: #218838;
}

td {
    background-color: rgba(0, 0, 0, 0.74);
  }

  .hidden {
    display: none;
  }
  .mini-table {
    margin-top: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
  }
  .mini-table table {
    width: 100%;
    border-collapse: collapse;
  }
  .mini-table th, .mini-table td {
    border: 1px solid #ccc;
    padding: 4px 6px;
    font-size: 14px;
    color: white;
    background: rgba(0,0,0,0.3);
  }
  .btn-detail {
    background: #007bff;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  
