/* css/styles.css */  
  
/* Custom Scrollbar */  
::-webkit-scrollbar {  
    width: 8px;  
}  
::-webkit-scrollbar-track {  
    background: #111;   
}  
::-webkit-scrollbar-thumb {  
    background: #8a0b19;   
}  
::-webkit-scrollbar-thumb:hover {  
    background: #CE1126;   
}  
  
/* 3D Calendar Icon Styles */  
.calendar-3d {  
    position: relative;  
    width: 120px;  
    height: 120px;  
    perspective: 1000px;  
    margin: 0 auto;  
}  
  
.calendar-inner {  
    position: relative;  
    width: 100%;  
    height: 100%;  
    transform-style: preserve-3d;  
    transition: transform 0.3s ease;  
}  
  
.calendar-3d:hover .calendar-inner {  
    transform: rotateY(5deg) rotateX(-5deg) translateZ(10px);  
}  
  
.calendar-face {  
    position: absolute;  
    width: 100%;  
    height: 100%;  
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);  
    border: 2px solid #CE1126;  
    border-radius: 12px;  
    box-shadow:   
        0 10px 30px rgba(0,0,0,0.5),  
        inset 0 1px 0 rgba(255,255,255,0.1);  
}  
  
.calendar-header {  
    background: linear-gradient(180deg, #CE1126, #8a0b19);  
    height: 30%;  
    border-radius: 10px 10px 0 0;  
    position: relative;  
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);  
}  
  
.calendar-rings {  
    position: absolute;  
    top: -8px;  
    left: 50%;  
    transform: translateX(-50%);  
    display: flex;  
    gap: 30px;  
}  
  
.calendar-ring {  
    width: 12px;  
    height: 16px;  
    background: linear-gradient(180deg, #888, #555);  
    border-radius: 6px 6px 0 0;  
    box-shadow:   
        inset 0 2px 4px rgba(0,0,0,0.5),  
        0 2px 4px rgba(0,0,0,0.3);  
}  
  
.calendar-month {  
    color: white;  
    font-size: 11px;  
    font-weight: bold;  
    text-transform: uppercase;  
    text-align: center;  
    padding-top: 8px;  
    letter-spacing: 1px;  
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);  
}  
  
.calendar-day {  
    position: absolute;  
    top: 50%;  
    left: 50%;  
    transform: translate(-50%, -50%);  
    font-size: 48px;  
    font-weight: bold;  
    color: #fff;  
    text-shadow:   
        2px 2px 4px rgba(0,0,0,0.5),  
        0 0 20px rgba(206,17,38,0.3);  
    line-height: 1;  
    margin-bottom: 12px;  
}  

.calendar-year {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

/* Add depth effect */  
.calendar-face::before {  
    content: '';  
    position: absolute;  
    top: 4px;  
    left: 4px;  
    right: 4px;  
    bottom: 4px;  
    background: linear-gradient(145deg, transparent, rgba(0,0,0,0.2));  
    border-radius: 10px;  
    pointer-events: none;  
}  
  
/* Fade in animation */  
@keyframes fadeIn {  
    from {  
        opacity: 0;  
        transform: translateY(20px);  
    }  
    to {  
        opacity: 1;  
        transform: translateY(0);  
    }  
}  
  
.fade-in {  
    animation: fadeIn 0.5s ease-out;  
}  
  
/* Admin Panel Styles */  
.admin-container {  
    max-width: 1200px;  
    margin: 0 auto;  
    padding: 2rem;  
}  
  
.admin-card {  
    background: #1a1a1a;  
    border: 1px solid #333;  
    border-radius: 12px;  
    padding: 2rem;  
    margin-bottom: 2rem;  
}  
  
.form-group {  
    margin-bottom: 1.5rem;  
}  
  
.form-label {  
    display: block;  
    color: #fff;  
    font-weight: 600;  
    margin-bottom: 0.5rem;  
}  
  
.form-input,  
.form-textarea,  
.form-select {  
    width: 100%;  
    padding: 0.75rem;  
    background: #111;  
    border: 1px solid #333;  
    border-radius: 6px;  
    color: #fff;  
    font-size: 1rem;  
}  
  
.form-input:focus,  
.form-textarea:focus,  
.form-select:focus {  
    outline: none;  
    border-color: #CE1126;  
    box-shadow: 0 0 0 3px rgba(206, 17, 38, 0.1);  
}  
  
.btn {  
    padding: 0.75rem 1.5rem;  
    border-radius: 6px;  
    font-weight: 600;  
    cursor: pointer;  
    transition: all 0.3s;  
    border: none;  
}  
  
.btn-primary {  
    background: #CE1126;  
    color: white;  
}  
  
.btn-primary:hover {  
    background: #8a0b19;  
}  
  
.btn-secondary {  
    background: #333;  
    color: white;  
}  
  
.btn-secondary:hover {  
    background: #444;  
}  
  
.btn-danger {  
    background: #dc2626;  
    color: white;  
}  
  
.btn-danger:hover {  
    background: #991b1b;  
}  
  
.alert {  
    padding: 1rem;  
    border-radius: 6px;  
    margin-bottom: 1rem;  
}  
  
.alert-success {  
    background: rgba(34, 197, 94, 0.1);  
    border: 1px solid rgba(34, 197, 94, 0.3);  
    color: #4ade80;  
}  
  
.alert-error {  
    background: rgba(239, 68, 68, 0.1);  
    border: 1px solid rgba(239, 68, 68, 0.3);  
    color: #f87171;  
} 
