/* Page-specific styles for index.html */

.logo-section {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.logo-section * {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.logo-section img {
    pointer-events: auto;
}

/* Inbox dropdown styles */
.inbox-date {
    color: var(--text-secondary) !important;
}

/* Sidebar badge centering */
.sidebar-link {
    position: relative;
}

.sidebar-badge {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    box-shadow: 5px 5px 15px #d9d9d9, -5px -5px 15px #ffffff;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 20px #d1d1d1, -8px -8px 20px #ffffff;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.custom-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-title {
    color: #2d3748;
    font-weight: 600;
}

.service-text {
    color: #718096;
    font-size: 0.95rem;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary, #1a1c20);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-blue, #3498db), var(--accent-green, #2ecc71));
    border-radius: 10px;
    border: 2px solid var(--bg-primary, #1a1c20);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2980b9, #27ae60);
}
