/* Shared styles for Sunrize app */

/* ============================================
   TABLE CONTAINER SECTIONS
   Used for card-like content containers
   ============================================ */
.table-container-section {
    background-color: white;
    padding: 0;
    border: 1px solid #8080805c;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.table-container-section:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ============================================
   SECTION HEADERS
   Header bar for table-container-section
   ============================================ */
.section-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(65, 105, 225, 0.2);
    background: #e3efff;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

/* ============================================
   SECTION CONTENT
   Content area within table-container-section
   ============================================ */
.section-content {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}
.section-content-tight {
    padding: 1rem;
}

/* ============================================
   SEPARATORS
   Title/label styling with icons
   ============================================ */
.separator {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-style: normal;
    color: #2d4380;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}
.separator-icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* ============================================
   NOTIFICATIONS
   Toast/alert notification styling
   ============================================ */
.notification {
    padding: 1.25rem;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: none;
    text-align: center;
}
.notification.success {
    background-color: #4CAF50;
    color: white;
}
.notification.error {
    background-color: #f44336;
    color: white;
}
.notification.warning {
    background-color: #ff9800;
    color: white;
}
.notification.info {
    background-color: #2196F3;
    color: white;
}

/* Fixed position notification (toast style) */
.notification-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ============================================
   EMOJI ICONS
   Consistent emoji sizing
   ============================================ */
.emoji-icon {
    font-size: 1rem;
}
