/* Portal Specific Styles */

.portal-body {
    background: #f5f7fa;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.guest-portal {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Navigation */
.portal-nav {
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.guest-nav {
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: white;
    margin: 0;
    font-size: 1.5em;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.language-select-small {
    padding: 8px 15px;
    border: 2px solid white;
    border-radius: 8px;
    background: rgba(255,255,255,0.2);
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.btn-icon {
    position: relative;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.notification-icon {
    font-size: 1.3em;
}

.btn-logout {
    background: rgba(255,255,255,0.9);
    color: #16a085;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Portal Container */
.portal-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 70px);
}

/* Sidebar */
.portal-sidebar {
    width: 280px;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.guest-sidebar {
    background: linear-gradient(180deg, #fff 0%, #fef9f8 100%);
}

.user-profile {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.guest-profile {
    border-bottom-color: #ffe0e0;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.3);
}

.guest-avatar {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.avatar-text {
    color: white;
    font-size: 2em;
    font-weight: 700;
}

.user-profile h3 {
    margin: 10px 0 5px;
    color: #333;
}

.employee-position, .guest-room {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.status-badge.active {
    background: #27ae60;
    color: white;
}

.stay-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(240, 147, 251, 0.1);
    border-radius: 10px;
}

.stay-dates {
    font-size: 0.9em;
    color: #666;
    line-height: 1.8;
}

/* Sidebar Menu */
.sidebar-menu {
    flex: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 5px;
    border-radius: 10px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    background: #f8f9fa;
    color: #16a085;
    transform: translateX(-5px);
}

.menu-item.active {
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
    color: white;
}

.guest-sidebar .menu-item.active {
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
}

.menu-icon {
    font-size: 1.3em;
    margin-left: 15px;
}

.sidebar-footer {
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.btn-secondary-outline {
    display: block;
    text-align: center;
    padding: 12px;
    border: 2px solid #16a085;
    border-radius: 10px;
    color: #16a085;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: #16a085;
    color: white;
}

.emergency-contact {
    text-align: center;
    padding: 15px;
    background: #fff3f3;
    border-radius: 10px;
}

.emergency-number {
    display: block;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    margin-top: 10px;
}

/* Main Content */
.portal-main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.portal-section {
    display: none;
}

.portal-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.section-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h1 {
    color: #333;
    font-size: 2em;
    margin: 0;
}

.section-header p {
    color: #666;
    margin: 5px 0 0;
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(22, 160, 133, 0.3);
}

.guest-portal .welcome-banner {
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
}

.welcome-banner h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.welcome-banner p {
    font-size: 1.2em;
    opacity: 0.95;
}

/* Stats Grid */
.stats-grid-portal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card-portal {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-card-portal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.gradient-blue {
    border-left: 5px solid #3498db;
}

.gradient-green {
    border-left: 5px solid #27ae60;
}

.gradient-orange {
    border-left: 5px solid #f39c12;
}

.gradient-purple {
    border-left: 5px solid #9b59b6;
}

.stat-icon {
    font-size: 3em;
}

.stat-content h3 {
    font-size: 2.5em;
    margin: 0 0 5px;
    color: #333;
}

.stat-content p {
    color: #666;
    margin: 0 0 5px;
}

.stat-change {
    font-size: 0.85em;
    font-weight: 600;
}

.stat-change.positive {
    color: #27ae60;
}

.stat-change.neutral {
    color: #666;
}

/* Charts */
.charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.chart-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.chart-card h3 {
    margin-bottom: 20px;
    color: #333;
}

.chart-container {
    height: 250px;
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-label {
    color: #666;
    font-weight: 600;
}

.metric-value {
    color: #16a085;
    font-weight: 700;
    font-size: 1.1em;
}

/* Activity Card */
.activity-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.activity-card h3 {
    margin-bottom: 20px;
    color: #333;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: #e9ecef;
    transform: translateX(-5px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.activity-icon.success {
    background: #27ae60;
    color: white;
}

.activity-icon.info {
    background: #3498db;
    color: white;
}

.activity-icon.warning {
    background: #f39c12;
    color: white;
}

.activity-title {
    font-weight: 600;
    color: #333;
    margin: 0 0 5px;
}

.activity-time {
    color: #999;
    font-size: 0.9em;
    margin: 0;
}

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.summary-card h4 {
    color: #666;
    margin: 0 0 10px;
    font-size: 0.95em;
}

.summary-value {
    font-size: 2em;
    font-weight: 700;
    color: #16a085;
    margin: 0;
}

/* Table */
.table-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow-x: auto;
}

.table-card h3 {
    margin-bottom: 20px;
    color: #333;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: #f8f9fa;
}

.data-table th {
    padding: 15px;
    text-align: right;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid #e0e0e0;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.data-table tr:hover {
    background: #f8f9fa;
}

.btn-icon-small {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon-small:hover {
    background: #2980b9;
    transform: scale(1.1);
}

/* Leave Balance */
.leave-balance-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.leave-balance-card h3 {
    margin-bottom: 20px;
    color: #333;
}

.balance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.balance-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.balance-icon {
    font-size: 2.5em;
}

.balance-type {
    font-weight: 600;
    color: #333;
    margin: 0 0 5px;
}

.balance-value {
    color: #16a085;
    font-weight: 700;
    margin: 0;
}

/* Missions Grid */
.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.mission-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #9b59b6;
}

.mission-card.completed {
    border-left-color: #27ae60;
}

.mission-card.pending {
    border-left-color: #f39c12;
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mission-header h4 {
    margin: 0;
    color: #333;
}

.mission-details p {
    margin: 10px 0;
    color: #666;
}

/* Profile */
.profile-grid {
    display: grid;
    gap: 20px;
}

.profile-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.profile-card h3 {
    margin-bottom: 25px;
    color: #333;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.info-item label {
    display: block;
    color: #999;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.info-item p {
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.action-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.action-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.action-card h3 {
    color: #333;
    margin: 0 0 10px;
}

.action-card p {
    color: #666;
    margin: 0;
    font-size: 0.9em;
}

/* Info Cards */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-card h3 {
    margin: 0 0 15px;
    color: #333;
}

.info-card p {
    margin: 5px 0;
    color: #666;
}

/* Attractions */
.attractions-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.attractions-section h2 {
    margin-bottom: 20px;
    color: #333;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.attraction-card {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.attraction-card:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.attraction-image {
    font-size: 3em;
    margin-bottom: 10px;
}

.attraction-card h4 {
    margin: 10px 0 5px;
    color: #333;
}

.attraction-card p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.service-card h3 {
    margin: 0 0 10px;
    color: #333;
}

.service-card p {
    color: #666;
    margin: 0 0 20px;
}

/* Forms */
.service-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a085;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-large {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

/* Menu Items */
.menu-section {
    margin: 30px 0;
}

.menu-section h3 {
    margin-bottom: 20px;
    color: #333;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: #e9ecef;
}

.menu-item input[type="checkbox"] {
    margin-left: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.menu-item label {
    flex: 1;
    cursor: pointer;
}

.menu-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.menu-item p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

/* Vehicle Options */
.vehicle-options {
    margin: 30px 0;
}

.vehicle-options h3 {
    margin-bottom: 20px;
    color: #333;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.vehicle-card {
    cursor: pointer;
}

.vehicle-card input[type="radio"] {
    display: none;
}

.vehicle-info {
    padding: 25px;
    background: #f8f9fa;
    border: 3px solid transparent;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.vehicle-card input[type="radio"]:checked + .vehicle-info {
    border-color: #16a085;
    background: white;
    box-shadow: 0 5px 20px rgba(22, 160, 133, 0.2);
}

.vehicle-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.vehicle-info h4 {
    margin: 10px 0 5px;
    color: #333;
}

.vehicle-info p {
    color: #666;
    font-size: 0.9em;
    margin: 5px 0;
}

.vehicle-info .price {
    color: #16a085;
    font-weight: 700;
    font-size: 1.2em;
}

/* Housekeeping Options */
.housekeeping-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.option-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.option-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.option-card h3 {
    margin: 0 0 10px;
    color: #333;
}

.option-card p {
    color: #666;
    margin: 0;
    font-size: 0.9em;
}

/* Additional Services */
.additional-services {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.additional-services h3 {
    margin-bottom: 20px;
    color: #333;
}

.services-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: #e9ecef;
}

.checkbox-item input[type="checkbox"] {
    margin-left: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Concierge */
.concierge-services {
    display: grid;
    gap: 20px;
}

.concierge-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.concierge-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.concierge-card h3 {
    margin: 0 0 15px;
    color: #333;
}

.concierge-card p {
    color: #666;
    margin-bottom: 20px;
}

.tour-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.tour-list li {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    color: #333;
}

/* Feedback */
.rating-section {
    text-align: center;
    margin-bottom: 30px;
}

.rating-section h3 {
    margin-bottom: 15px;
    color: #333;
}

.star-rating {
    font-size: 3em;
    cursor: pointer;
}

.star-rating .star {
    transition: all 0.3s ease;
    opacity: 0.3;
}

.star-rating .star:hover,
.star-rating .star.active {
    opacity: 1;
    transform: scale(1.2);
}

.rating-categories {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.category-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-rating label {
    min-width: 150px;
    color: #333;
    font-weight: 600;
}

.rating-bars {
    flex: 1;
}

.rating-bars input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
}

.rating-bars input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #16a085;
    cursor: pointer;
}

.rating-bars input[type="range"]::-moz-range-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #16a085;
    cursor: pointer;
    border: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.3s ease;
}

.success-modal {
    text-align: center;
}

.success-icon {
    font-size: 5em;
    margin-bottom: 20px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    margin: 0;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2em;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.modal-actions button {
    flex: 1;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .portal-container {
        flex-direction: column;
    }

    .portal-sidebar {
        width: 100%;
        padding: 20px;
    }

    .sidebar-menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }

    .menu-icon {
        margin: 0 0 5px 0;
    }

    .stats-grid-portal,
    .charts-row,
    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
