.decision-call-in-container {
margin-bottom: 30px;
}

.call-in-status-alert {
display: flex;
gap: 20px;
padding: 25px;
border-radius: 12px;
margin-bottom: 30px;
}

.alert-danger {
background: #fff5f5;
border: 2px solid #dc3545;
}

.alert-warning {
background: #fffbeb;
border: 2px solid #ffc107;
}

.alert-icon {
flex-shrink: 0;
}

.alert-icon .dashicons {
font-size: 48px;
width: 48px;
height: 48px;
}

.alert-danger .alert-icon .dashicons {
color: #dc3545;
}

.alert-warning .alert-icon .dashicons {
color: #ffc107;
}

.alert-content {
flex: 1;
}

.alert-content h3 {
margin-top: 0;
margin-bottom: 10px;
color: var(--color-gov-text);
}

.alert-content p {
margin-bottom: 15px;
line-height: 1.6;
}

.call-in-details {
background: white;
padding: 20px;
border-radius: 8px;
margin-top: 20px;
}

.call-in-meta {
margin-bottom: 12px;
padding-bottom: 12px;
border-bottom: 1px solid #e0e0e0;
}

.call-in-meta:last-child {
border-bottom: none;
margin-bottom: 0;
}

.call-in-justification {
margin-top: 20px;
padding-top: 20px;
border-top: 2px solid #e0e0e0;
}

.justification-text {
background: #f8f9fa;
padding: 15px;
border-left: 4px solid var(--color-gov-primary);
border-radius: 6px;
margin-top: 10px;
}

.button-call-in {
display: inline-flex;
align-items: center;
gap: 8px;
background: #dc3545;
color: white;
border: none;
padding: 12px 24px;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
margin-top: 15px;
}

.button-call-in:hover {
background: #c82333;
color: white;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.button-call-in .dashicons {
font-size: 20px;
width: 20px;
height: 20px;
}

.call-in-info {
margin-top: 15px;
color: var(--color-gov-secondary);
font-size: 0.95em;
}

/* Modal Styles */
.call-in-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
}

.modal-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
}

.modal-content {
position: relative;
background: white;
border-radius: 12px;
max-width: 600px;
width: 90%;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 25px 30px;
border-bottom: 2px solid #e0e0e0;
}

.modal-header h2 {
margin: 0;
color: var(--color-gov-text);
}

.modal-close {
background: none;
border: none;
cursor: pointer;
padding: 5px;
color: #999;
transition: color 0.3s;
}

.modal-close:hover {
color: #dc3545;
}

.modal-close .dashicons {
font-size: 24px;
width: 24px;
height: 24px;
}

.modal-body {
padding: 30px;
}

.call-in-form .form-group {
margin-bottom: 25px;
}

.call-in-form label {
display: block;
font-weight: 600;
margin-bottom: 8px;
color: var(--color-gov-text);
}

.call-in-form textarea {
width: 100%;
padding: 12px;
border: 2px solid #e0e0e0;
border-radius: 6px;
font-family: inherit;
font-size: 15px;
resize: vertical;
transition: border-color 0.3s;
}

.call-in-form textarea:focus {
outline: none;
border-color: var(--color-gov-primary);
}

.form-description {
margin-top: 8px;
font-size: 0.9em;
color: var(--color-gov-secondary);
line-height: 1.5;
}

.form-actions {
display: flex;
gap: 15px;
justify-content: flex-end;
margin-top: 30px;
}

.form-actions button {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
}

.form-actions .button-secondary {
background: #6c757d;
color: white;
border: none;
}

.form-actions .button-secondary:hover {
background: #5a6268;
}

.form-actions .button-primary {
background: #dc3545;
color: white;
border: none;
}

.form-actions .button-primary:hover {
background: #c82333;
box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.form-message {
margin-top: 20px;
padding: 15px;
border-radius: 6px;
}

.form-message.success {
background: #d4edda;
border: 1px solid #28a745;
color: #155724;
}

.form-message.error {
background: #f8d7da;
border: 1px solid #dc3545;
color: #721c24;
}
</style>
