/* Custom styles for Skyy-Net Admin UI */

/* Header neon styling - NO PULSING */
.header-neon {
    position: relative;
    box-shadow: 
        0 0 4px #3b82f6,
        0 0 8px #3b82f6,
        0 0 12px #3b82f6,
        inset 0 0 10px rgba(59, 130, 246, 0.07);
    border: 2px solid #3b82f6;
    z-index: 10;
}

/* Main content neon styling - NO PULSING */
.main-neon {
    position: relative;
    box-shadow: 
        0 0 4px #3b82f6,
        0 0 8px #3b82f6,
        0 0 12px #3b82f6,
        inset 0 0 10px rgba(59, 130, 246, 0.07);
    border: 2px solid #3b82f6;
    z-index: 10;
}

/* Twinkling stars for header */
.header-stars {
    position: relative;
    overflow: hidden;
}

.header-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
    z-index: 1;
}

.header-star:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0.2s;
}

.header-star:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: 1.7s;
}

.header-star:nth-child(3) {
    top: 40%;
    left: 25%;
    animation-delay: 0.9s;
}

.header-star:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 2.1s;
}

.header-star:nth-child(5) {
    top: 15%;
    left: 50%;
    animation-delay: 1.4s;
}

.header-star:nth-child(6) {
    top: 70%;
    left: 15%;
    animation-delay: 0.6s;
}

.header-star:nth-child(7) {
    top: 30%;
    left: 80%;
    animation-delay: 2.3s;
}

.header-star:nth-child(8) {
    top: 50%;
    left: 40%;
    animation-delay: 1.1s;
}

/* Twinkling stars for sidebar */
.sidebar-stars {
    position: relative;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
    z-index: 1;
}

.star:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 25%;
    left: 80%;
    animation-delay: 1.5s;
}

.star:nth-child(3) {
    top: 40%;
    left: 25%;
    animation-delay: 0.8s;
}

.star:nth-child(4) {
    top: 55%;
    left: 70%;
    animation-delay: 2.2s;
}

.star:nth-child(5) {
    top: 70%;
    left: 40%;
    animation-delay: 1.1s;
}

.star:nth-child(6) {
    top: 15%;
    left: 60%;
    animation-delay: 0.3s;
}

.star:nth-child(7) {
    top: 45%;
    left: 10%;
    animation-delay: 1.8s;
}

.star:nth-child(8) {
    top: 80%;
    left: 85%;
    animation-delay: 0.6s;
}

.star:nth-child(9) {
    top: 30%;
    left: 45%;
    animation-delay: 2.5s;
}

.star:nth-child(10) {
    top: 65%;
    left: 20%;
    animation-delay: 1.3s;
}

.star:nth-child(11) {
    top: 90%;
    left: 55%;
    animation-delay: 0.9s;
}

.star:nth-child(12) {
    top: 5%;
    left: 35%;
    animation-delay: 1.7s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Custom scrollbar - Dark theme */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #525252;
}

/* Custom animations */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}





