/* ============================================
   Admin Event Management Styles - Hubionis Theme
   ============================================ */

.admin-event-management-section {
    padding: 2rem;
    background: transparent;
    min-height: auto;
    margin-top: 2rem;
}

/* ============================================
   Section Header
   ============================================ */

.admin-event-management-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(31, 85, 85, 0.6), rgba(15, 42, 42, 0.4));
    border-radius: 16px;
    border: 1px solid rgba(127, 255, 0, 0.15);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-event-management-section .section-header h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #7FFF00, #6DE800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-event-management-section .section-header h2::before {
    content: '📅';
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(127, 255, 0, 0.5));
}

/* ============================================
   Stats Grid
   ============================================ */

.aem-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.aem-stat-card {
    background: linear-gradient(135deg, rgba(31, 85, 85, 0.4), rgba(15, 42, 42, 0.3));
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.aem-stat-card:hover {
    border-color: rgba(127, 255, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.aem-stat-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(127, 255, 0, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.aem-stat-content {
    flex: 1;
    min-width: 0;
}

.aem-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #7FFF00;
    line-height: 1;
}

.aem-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.aem-stat-card.warning .aem-stat-value { color: #FFC107; }
.aem-stat-card.danger .aem-stat-value { color: #FF5252; }
.aem-stat-card.info .aem-stat-value { color: #00BFFF; }
.aem-stat-card.purple .aem-stat-value { color: #BB86FC; }

/* ============================================
   Filters Bar
   ============================================ */

.aem-filters-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(15, 42, 42, 0.4);
    border: 1px solid rgba(127, 255, 0, 0.1);
    border-radius: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.aem-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 140px;
}

.aem-filter-group label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.aem-filter-group select,
.aem-filter-group input {
    padding: 0.6rem 0.75rem;
    background: rgba(15, 42, 42, 0.6);
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.aem-filter-group select:focus,
.aem-filter-group input:focus {
    border-color: rgba(127, 255, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(127, 255, 0, 0.1);
}

.aem-filter-group select option {
    background: #0f2a2a;
    color: #fff;
}

.aem-filter-group.search-group {
    flex: 1;
    min-width: 200px;
}

.aem-filter-group.search-group input {
    width: 100%;
}

/* ============================================
   Events Table
   ============================================ */

.aem-table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(127, 255, 0, 0.1);
    margin-bottom: 2rem;
}

.aem-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;
}

.aem-table thead {
    background: linear-gradient(135deg, rgba(31, 85, 85, 0.6), rgba(15, 42, 42, 0.4));
}

.aem-table thead th {
    padding: 1rem 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(127, 255, 0, 0.15);
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.aem-table thead th:hover {
    color: #7FFF00;
}

.aem-table thead th.sortable::after {
    content: ' ↕';
    opacity: 0.4;
    font-size: 0.7rem;
}

.aem-table thead th.sort-asc::after {
    content: ' ↑';
    opacity: 1;
    color: #7FFF00;
}

.aem-table thead th.sort-desc::after {
    content: ' ↓';
    opacity: 1;
    color: #7FFF00;
}

.aem-table tbody tr {
    border-bottom: 1px solid rgba(127, 255, 0, 0.05);
    transition: background-color 0.2s;
}

.aem-table tbody tr:hover {
    background: rgba(127, 255, 0, 0.05);
}

.aem-table tbody tr.deleted-row {
    opacity: 0.5;
    background: rgba(255, 0, 0, 0.03);
}

.aem-table tbody td {
    padding: 0.85rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    vertical-align: middle;
}

/* Event Title Column */
.aem-event-title-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 280px;
}

.aem-event-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(127, 255, 0, 0.2);
}

.aem-event-thumb-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(127, 255, 0, 0.15), rgba(109, 232, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(127, 255, 0, 0.1);
}

.aem-event-title-info {
    min-width: 0;
}

.aem-event-title-info strong {
    display: block;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.aem-event-title-info small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    margin-top: 2px;
}

/* Organizer Column */
.aem-organizer-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.aem-organizer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(127, 255, 0, 0.2);
}

.aem-organizer-initials {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7FFF00, #6DE800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0a1a1a;
    flex-shrink: 0;
}

.aem-organizer-info {
    min-width: 0;
}

.aem-organizer-info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.aem-organizer-info small {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* Status Badges */
.aem-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
}

.aem-status-badge.published {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.aem-status-badge.draft {
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.aem-status-badge.cancelled {
    background: rgba(255, 82, 82, 0.15);
    color: #FF5252;
    border: 1px solid rgba(255, 82, 82, 0.3);
}

.aem-status-badge.completed {
    background: rgba(0, 191, 255, 0.15);
    color: #00BFFF;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.aem-status-badge.deleted {
    background: rgba(255, 0, 0, 0.1);
    color: #FF5252;
    border: 1px solid rgba(255, 0, 0, 0.2);
    text-decoration: line-through;
}

/* Type Badge */
.aem-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.aem-type-badge.physical {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.aem-type-badge.online {
    background: rgba(0, 191, 255, 0.1);
    color: #00BFFF;
}

.aem-type-badge.hybrid {
    background: rgba(187, 134, 252, 0.1);
    color: #BB86FC;
}

/* AI Badge */
.aem-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.aem-ai-badge.ai-used {
    background: rgba(187, 134, 252, 0.15);
    color: #BB86FC;
    border: 1px solid rgba(187, 134, 252, 0.3);
}

.aem-ai-badge.no-ai {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.35);
}

/* Featured Star */
.aem-featured-star {
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
    user-select: none;
}

.aem-featured-star:hover {
    transform: scale(1.3);
}

/* Price Cell */
.aem-price {
    font-weight: 600;
    color: #7FFF00;
}

.aem-price.free {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ============================================
   Actions
   ============================================ */

.aem-actions {
    display: flex;
    gap: 0.35rem;
    flex-wrap: nowrap;
}

.aem-btn-action {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.85rem;
    padding: 0;
}

.aem-btn-action:hover {
    background: rgba(127, 255, 0, 0.15);
    border-color: rgba(127, 255, 0, 0.3);
    transform: translateY(-1px);
}

.aem-btn-action.view:hover { color: #00BFFF; border-color: rgba(0, 191, 255, 0.3); }
.aem-btn-action.publish:hover { color: #4CAF50; border-color: rgba(76, 175, 80, 0.3); }
.aem-btn-action.unpublish:hover { color: #FFC107; border-color: rgba(255, 193, 7, 0.3); }
.aem-btn-action.delete:hover { color: #FF5252; border-color: rgba(255, 82, 82, 0.3); background: rgba(255, 82, 82, 0.1); }
.aem-btn-action.restore:hover { color: #BB86FC; border-color: rgba(187, 134, 252, 0.3); }

/* ============================================
   Pagination
   ============================================ */

.aem-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.aem-pagination button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(127, 255, 0, 0.2);
    background: rgba(15, 42, 42, 0.4);
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.aem-pagination button:hover:not(:disabled) {
    background: rgba(127, 255, 0, 0.15);
    border-color: rgba(127, 255, 0, 0.4);
}

.aem-pagination button.active {
    background: linear-gradient(135deg, #7FFF00, #6DE800);
    color: #0a1a1a;
    font-weight: 700;
    border-color: transparent;
}

.aem-pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.aem-pagination .page-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    padding: 0 1rem;
}

/* ============================================
   Event Detail Modal
   ============================================ */

.aem-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    overflow-y: auto;
}

.aem-modal-overlay.active {
    display: flex;
}

.aem-modal {
    background: linear-gradient(135deg, #0f2a2a 0%, #1a3a3a 100%);
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.aem-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(127, 255, 0, 0.1);
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #0f2a2a 0%, #1a3a3a 100%);
    z-index: 1;
}

.aem-modal-header h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    max-width: 80%;
}

.aem-modal-header h3 small {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-top: 4px;
}

.aem-modal-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.aem-modal-close:hover {
    background: rgba(255, 82, 82, 0.2);
    border-color: rgba(255, 82, 82, 0.3);
}

.aem-modal-body {
    padding: 2rem;
}

/* Modal Tabs */
.aem-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(127, 255, 0, 0.1);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.aem-tab {
    padding: 0.75rem 1.25rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.aem-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.aem-tab.active {
    color: #7FFF00;
    border-bottom-color: #7FFF00;
}

.aem-tab-content {
    display: none;
}

.aem-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Modal Info Grid */
.aem-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.aem-info-item {
    background: rgba(15, 42, 42, 0.4);
    border: 1px solid rgba(127, 255, 0, 0.08);
    border-radius: 10px;
    padding: 1rem;
}

.aem-info-item label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.aem-info-item .value {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    word-break: break-word;
}

.aem-info-item .value.highlight {
    color: #7FFF00;
    font-weight: 700;
}

/* AI Usage Timeline */
.aem-ai-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.aem-ai-timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(187, 134, 252, 0.05);
    border: 1px solid rgba(187, 134, 252, 0.1);
    border-radius: 8px;
}

.aem-ai-timeline-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(187, 134, 252, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.aem-ai-timeline-info {
    flex: 1;
    min-width: 0;
}

.aem-ai-timeline-info strong {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    text-transform: capitalize;
}

.aem-ai-timeline-info small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.aem-ai-timeline-cost {
    color: #BB86FC;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: right;
    white-space: nowrap;
}

/* Attendees List */
.aem-attendees-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.aem-attendee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: rgba(15, 42, 42, 0.3);
    border: 1px solid rgba(127, 255, 0, 0.05);
    border-radius: 8px;
}

.aem-attendee-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(127, 255, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #7FFF00;
    flex-shrink: 0;
}

.aem-attendee-info {
    flex: 1;
}

.aem-attendee-info strong {
    display: block;
    font-size: 0.85rem;
    color: #fff;
}

.aem-attendee-info small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.aem-attendee-status {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.aem-attendee-status.confirmed { background: rgba(76, 175, 80, 0.15); color: #4CAF50; }
.aem-attendee-status.registered { background: rgba(255, 193, 7, 0.15); color: #FFC107; }
.aem-attendee-status.cancelled { background: rgba(255, 82, 82, 0.15); color: #FF5252; }

/* ============================================
   Confirm Modal
   ============================================ */

.aem-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
}

.aem-confirm-overlay.active {
    display: flex;
}

.aem-confirm-box {
    background: linear-gradient(135deg, #0f2a2a, #1a3a3a);
    border: 1px solid rgba(255, 82, 82, 0.3);
    border-radius: 16px;
    padding: 2rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
}

.aem-confirm-box h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.aem-confirm-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.aem-confirm-box .warning-text {
    color: #FF5252;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.aem-confirm-box textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(15, 42, 42, 0.6);
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 60px;
    margin-bottom: 1rem;
    outline: none;
}

.aem-confirm-box textarea:focus {
    border-color: rgba(127, 255, 0, 0.4);
}

.aem-confirm-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.aem-confirm-actions button {
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.aem-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.aem-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

.aem-btn-danger {
    background: linear-gradient(135deg, #FF5252, #D32F2F);
    color: #fff;
}

.aem-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

/* ============================================
   Empty State
   ============================================ */

.aem-empty-state {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.aem-empty-state .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.aem-empty-state .title {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.aem-empty-state .subtitle {
    font-size: 0.9rem;
}

/* Loading Spinner */
.aem-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    flex-direction: column;
    gap: 1rem;
}

.aem-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(127, 255, 0, 0.2);
    border-top: 3px solid #7FFF00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.aem-loading-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .aem-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .admin-event-management-section {
        padding: 1rem;
    }

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

    .aem-filters-bar {
        flex-direction: column;
    }

    .aem-filter-group {
        min-width: 100%;
    }

    .aem-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aem-stat-value {
        font-size: 1.35rem;
    }

    .aem-modal {
        margin: 1rem;
    }

    .aem-info-grid {
        grid-template-columns: 1fr;
    }
}
