/* Layout Styles */

/* Main Content */
.main-content {
    margin-top: 76px;
}

/* Dashboard Container */
.dashboard-container {
    margin-top: 76px;
}

/* Dashboard Sidebar */
.sidebar {
    width: 280px;
}

/* Dashboard Icons */
.dashboard-icon {
    color: var(--primary-color);
}

/* Admin Icons */
.admin-icon {
    color: white;
}

/* Admin Divider */
.admin-divider {
    border-color: rgba(255,255,255,0.2);
}

/* Abstract Content */
.abstract-content {
    max-height: 200px;
    overflow-y: auto;
}

/* Inline Form */
.d-inline {
    display: inline;
}

/* Language switcher (PT / EN) in header */
.lang-switcher-flags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switcher-flags .lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    color: inherit;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.lang-switcher-flags .lang-flag:hover {
    opacity: 1;
}

.lang-switcher-flags .lang-flag-current {
    opacity: 0.5;
    cursor: default;
}

.lang-switcher-flags .lang-flag-current:hover {
    opacity: 0.5;
} 