/* app.css - GCB Outlook Add-in styles
   Compact styles optimized for the Outlook task pane (320px wide) */

/* Task pane body reset */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Make the task pane scrollable */
#app {
    min-height: 100%;
    overflow-y: auto;
}

/* Compact spacing for task pane context */
.addin-container {
    padding: 12px;
    max-width: 100%;
}

/* User info card adjustments */
.user-info-label {
    font-size: 0.75rem;
    opacity: 0.65;
    margin-bottom: 2px;
}

.user-info-value {
    font-size: 0.875rem;
    font-weight: 500;
    word-break: break-word;
}

/* Status badges */
.status-enabled {
    color: #4caf50;
}

.status-disabled {
    color: #f44336;
}
