

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.btn-add-case {
    background-color: #8b0000;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
}

.form-container {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.file-upload {
    border: 2px dashed #e5e7eb;
    border-radius: 4px;
    padding: 40px;
    text-align: center;
}

.file-upload-icon {
    margin-bottom: 10px;
    color: #6b7280;
}

.file-upload-text {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 5px;
}

.file-upload-link {
    color: #3b82f6;
    text-decoration: none;
}

.file-upload-formats {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 10px;
}

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

.btn-save {
    background-color: #8b0000;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    flex: 1;
    font-weight: 500;
}

.btn-cancel {
    background-color: white;
    color: black;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    flex: 1;
    font-weight: 500;
}