﻿/* Home page header styling */
.home-page .welcome-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* OSAAP BlueID logo for home page */
.blueid-home-logo {
    flex-shrink: 0;
}

/* Client logo styling */
.client-logo {
    margin-top: 15px;
}

    .client-logo img {
        max-height: 60px;
    }

/* Page title styling */
.home-page h1 {
    color: #1565c0;
}

/* List group styling for menu items */
.home-page .list-group {
    border-radius: 10px;
    overflow: hidden;
}

.home-page .list-group-item {
    padding: 1rem 1.25rem;
    border-left: none;
    border-right: none;
    transition: all 0.2s ease;
}

.home-page .list-group-item:first-child {
    border-top: none;
}

.home-page .list-group-item:last-child {
    border-bottom: none;
}

.home-page .list-group-item:hover {
    background-color: #e3f2fd;
    transform: translateX(5px);
}

.home-page .list-group-item i {
    width: 24px;
    text-align: center;
}

/* Welcome card (authenticated dashboard) */
.welcome-card {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    border-radius: 16px;
    color: white;
}
.welcome-card .welcome-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quick action cards */
.quick-action-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    border-radius: 12px;
    height: 100%;
}
.quick-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}
.quick-action-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick-action-card .card-icon i {
    font-size: 1.25rem;
}
.quick-action-link {
    text-decoration: none;
    color: inherit;
}
.quick-action-link:hover {
    color: inherit;
}

/* Session info bar */
.session-info {
    background: #f8f9fa;
    border-radius: 8px;
}

/* Login button */
.btn-login-home {
    height: 48px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
}

/* Responsive header for small screens */
@media (max-width: 480px) {
    .home-page .welcome-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .home-page h1 {
        font-size: 1.5rem;
    }

    .blueid-home-logo img {
        width: 60px;
        height: 60px;
    }
}
