/* Online Meetings — Public Styles */

/* ── Meeting cards ─────────────────────────────────────── */
.om-account-tab { padding: 4px 0; }

.om-empty { color: #777; }

.om-meeting-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #fff;
    overflow: hidden;
}

/* Card header */
.om-card-header {
    background: #f5f7fa;
    padding: 14px 18px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.om-card-title {
    font-weight: 700;
    font-size: 15px;
    color: #222;
}

.om-card-datetime {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.om-card-datetime .om-date::after { content: ' ·'; margin-right: 4px; }

/* Card rows */
.om-card-row {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
    flex-wrap: wrap;
}

.om-card-row:last-child { border-bottom: none; }

.om-row-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    min-width: 110px;
    flex-shrink: 0;
}

/* ── Password field ────────────────────────────────────── */
.om-password-field {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.om-password-value {
    font-size: 15px;
    letter-spacing: 2px;
    color: #333;
    font-family: monospace;
}

.om-no-pass {
    font-size: 13px;
    color: #aaa;
    font-style: italic;
}

/* Icon buttons */
.om-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #555;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.om-btn-icon:hover {
    background: #f0f0f0;
    color: #222;
    border-color: #bbb;
}

.om-btn-icon svg {
    width: 15px;
    height: 15px;
    display: block;
}

/* ── Access buttons ────────────────────────────────────── */
.om-access-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.om-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: opacity 0.15s;
    white-space: nowrap;
}

.om-btn:hover { opacity: 0.85; text-decoration: none; }

.om-btn-primary {
    background: #0073aa;
    color: #fff !important;
}

.om-btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
}

.om-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 600px) {
    .om-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .om-card-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .om-row-label { min-width: unset; }

    .om-access-actions {
        width: 100%;
        flex-direction: column;
    }

    .om-btn {
        width: 100%;
        justify-content: center;
    }

    .om-btn-icon {
        width: 36px;
        height: 36px;
    }
}
