/* Compact task pane styling for Outlook Add-in */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background-color: #fafafa;
    overflow-x: hidden;
}

#app {
    padding: 12px;
    max-width: 400px;
    margin: 0 auto;
}

/* Tighter spacing for task pane */
.mud-input-control {
    margin-bottom: 4px !important;
}

.mud-select {
    margin-bottom: 4px !important;
}

/* Draft summary section */
.draft-summary {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 16px;
}

.draft-summary .mud-input-control {
    margin-bottom: 2px !important;
}

/* Taller Send As dropdown so name + team are visible */
.send-as-select .mud-input-slot,
.send-as-select .mud-input {
    min-height: 56px !important;
    height: auto !important;
    white-space: normal !important;
    overflow: visible !important;
    line-height: 1.4 !important;
    padding-top: 16px !important;
    padding-bottom: 8px !important;
}

/* Schedule form section */
.schedule-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 16px;
}

/* Success/error messages */
.schedule-result {
    margin-top: 12px;
}

/* Loading overlay */
.loading-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}
