.eos-workspace {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.eos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.eos-header h2 {
    margin: 0;
}

.eos-meeting-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

#eos-meeting-timer {
    font-size: 1.5em;
    font-weight: bold;
    font-variant-numeric: tabular-nums;
    color: #d63638;
}

/* Tabs */
.eos-tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.eos-tab-btn {
    padding: 10px 20px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-bottom: none;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 5px 5px 0 0;
    font-size: 14px;
    font-weight: 600;
}

.eos-tab-btn.active {
    background: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    color: #0073aa;
}

.eos-tab-btn:hover:not(.active) {
    background: #e5e5e5;
}

/* Content */
.eos-tab-content {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.eos-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eos-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.eos-item:last-child {
    border-bottom: none;
}

.eos-item input[type="text"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.eos-item-owner {
    font-size: 0.85em;
    color: #666;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Scorecard Table */
.eos-scorecard-table {
    width: 100%;
    border-collapse: collapse;
}

.eos-scorecard-table th, 
.eos-scorecard-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.eos-scorecard-table th {
    background: #f9f9f9;
    font-weight: 600;
}

.eos-scorecard-table input[type="text"],
.eos-scorecard-table input[type="number"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #eee;
    background: transparent;
}

.eos-scorecard-table input[type="number"] {
    width: 60px;
    text-align: center;
}

.eos-scorecard-table tr:hover {
    background-color: #fcfcfc;
}

/* Modals */
.eos-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.eos-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    min-width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.eos-modal-content h3 {
    margin-top: 0;
}

#eos-attendees-list, #eos-ratings-list {
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.eos-stop-btn {
    background-color: #d63638 !important;
    border-color: #d63638 !important;
}

.eos-stop-btn:hover {
    background-color: #a02022 !important;
}
