
/* General Body Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

/* Main container */
.container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-align: center;
}

header h1 {
    color: #0056b3;
    margin: 0;
}

header p {
    margin: 5px 0 0;
    color: #6c757d;
    font-size: 1.1em;
}

/* Card layout */
.card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.card h2 {
    margin-top: 0;
    color: #343a40;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 1.4em;
}

/* Workflow Steps */
.workflow-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.step.completed {
    border-left: 5px solid #28a745; /* Green border for completed */
    background-color: #f8f9fa;
}

.step.completed h3 {
    text-decoration: line-through;
    color: #6c757d;
}

.step h3 {
    margin-top: 0;
    color: #0056b3;
}

/* Buttons */
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #0056b3;
}

/* Status Messages */
.status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
}
.status.pending { background-color: #e9ecef; color: #495057; }
.status.success { background-color: #d4edda; color: #155724; }
.status.warning { background-color: #fff3cd; color: #856404; }
.status.error   { background-color: #f8d7da; color: #721c24; }


/* Utility Classes */
.hidden {
    display: none;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

/* Payer/Patient Specific */
.status-badge {
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: bold;
    color: white;
}
.status-badge.success { background-color: #28a745; }

.value-prop {
    background-color: #e7f1ff;
    border-left: 5px solid #0056b3;
}
