/* anime-schedule.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.anime-schedule-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.anime-schedule-header {
    text-align: center;
    margin-bottom: 20px;
}

.anime-schedule-header h2 {
    color: #4CAF50;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.anime-schedule-header h2::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background: #4CAF50;
    margin: 5px auto 0;
    border-radius: 2px;
}

.day-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.day-btn {
    background: transparent;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.day-btn:hover, .day-btn.active {
    background: #4CAF50;
    color: white;
    box-shadow: 0px 4px 8px rgba(76, 175, 80, 0.3);
}

#anime-list ul {
    list-style-type: none;
    padding: 0;
}

#anime-list li {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#anime-list li:hover {
    transform: translateY(-2px);
    border-color: #4CAF50;
}

.anime-time {
    font-weight: bold;
    color: #4CAF50;
    margin-right: 15px;
    min-width: 70px;
    font-size: 16px;
}

.anime-title {
    flex-grow: 1;
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

.anime-link {
    margin-left: 10px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.2s ease;
    color: #4CAF50;
    font-weight: 500;
}

.anime-link:hover {
    opacity: 1;
    text-decoration: underline;
    transform: scale(1.1);
}
/* Admin Styles */
.anime-schedule-admin .anime-schedule-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.anime-schedule-admin .anime-schedule-form input,
.anime-schedule-admin .anime-schedule-form select {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.anime-schedule-admin .anime-schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.anime-schedule-admin .anime-schedule-table th,
.anime-schedule-admin .anime-schedule-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

