/* * Main Stylesheet for My Home Meeting App
 * Replicating Reference UI Palette & Layout
 */

:root {
    --primary-purple: #6c5ce7;
    --secondary-teal: #00cec9;
    --success-green: #00b894;
    --warning-orange: #ff7675;
    --white: #ffffff;
    --bg-light: #f4f7f6;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --border-color: #edeef2;
    --sidebar-active-bg: #f0f3ff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Base Elements */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #333;
}

/* Card Styling - Replicating the 4 Summary Cards */
.summary-card {
    border: none;
    border-radius: 15px;
    color: var(--white);
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
}

.summary-card .card-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.summary-card .card-value {
    font-size: 2rem;
    font-weight: 800;
    margin: 5px 0;
}

.summary-card .card-icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 2.5rem;
    opacity: 0.2;
}

/* Reference Specific Colors */
.bg-purple { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.bg-teal { background: linear-gradient(135deg, #00cec9, #81ecec); }
.bg-green { background: linear-gradient(135deg, #00b894, #55efc4); }
.bg-orange { background: linear-gradient(135deg, #ff7675, #fab1a0); }

/* Content Cards (White Panels) */
.content-card {
    background: var(--white);
    border: none;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

.content-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Quick Actions Panel */
.quick-action-item {
    background: #fcfcfc;
    border: 1px solid #f1f2f6;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s;
}

.quick-action-item:hover {
    background: #fff;
    border-color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.action-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-purple { background: #f0edff; color: #6c5ce7; }
.icon-green { background: #e6fffa; color: #00b894; }
.icon-orange { background: #fff5f5; color: #ff7675; }

/* Table Styling */
.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: #fcfcfc;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px;
    font-weight: 600;
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f8f9fa;
    color: #444;
}

/* Badge Styles */
.badge-soft-success { background-color: #e6fffa; color: #00b894; }
.badge-soft-primary { background-color: #f0edff; color: #6c5ce7; }
.badge-soft-warning { background-color: #fff8e6; color: #ffa800; }

/* Button Customization */
.btn-primary {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #5b4bc4;
    border-color: #5b4bc4;
}

/* Utilities */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.85rem; }
.fw-700 { font-weight: 700; }