
.govie-main-wrapper{
    padding-top: 10px !important;
    padding-bottom: 0 !important;
}

/* Tracker Admin Dashboard Header */
.govie-grid-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.govie-grid-column-one-third {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* View Organisation Button */
.govie-button--secondary {
    white-space: nowrap;
    padding: 0.75rem 1.5rem !important;
    font-size: 16px !important;
    border-radius: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.govie-button--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Header user info styling */
.header-user-info {
    padding: 10px 15px;
    text-align: right;
    background: rgba(0, 0, 0, 0.1);
}

.header-user-info span {
    color: white;
    font-size: 16px;
}

.header-user-info a {
    color: white;
    text-decoration: underline;
}

.header-user-info a:hover {
    opacity: 0.8;
}

/* Breadcrumb styling */
.header-breadcrumb {
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 12px 15px !important;
}

.header-breadcrumb span {
    color: white !important;
    font-size: 16px !important;
}

.breadcrumb-separator {
    opacity: 0.7;
    margin: 0 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .govie-grid-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .govie-grid-column-one-third {
        width: 100%;
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .govie-button--secondary {
        width: 100%;
        text-align: center;
    }
    
    .header-user-info span {
        font-size: 14px;
    }
    
    .header-breadcrumb span {
        font-size: 14px !important;
    }
}

/* Admin Navbar */
.admin-navbar {
    background: var(--govie-header-surface-colour, #004d44);
    padding: 0.875rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-navbar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 2rem;
}

.admin-navbar li {
    display: flex;
    align-items: center;
}

.admin-navbar__separator {
    display: none;
}

.admin-navbar__link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
    letter-spacing: 0.01em;
}

.admin-navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.admin-navbar__link:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.admin-navbar__link:hover::after {
    width: 100%;
}

.admin-navbar__link:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
    border-radius: 2px;
}

.admin-navbar__link:active {
    opacity: 0.8;
}

.admin-navbar__link--active {
    font-weight: 600;
    opacity: 1;
}

.admin-navbar__link--active::after {
    width: 100%;
    height: 3px;
    background: #ffffff;
}
