/* Details and Forms Styles  */

/* Request ID Section */
/* .request-id {
    font-size: 14px;
    color: #2E2E2E;
    background-color: #FBFBFB;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
} */

.instructions {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Progress Circle */
.progress-circle-container {
    position: relative;
    width: 60px;
    height: 60px;
    float: right;
    margin-bottom: 10px;
}

.progress-circle {
    transform: rotate(-90deg);
    width: 60px;
    height: 60px;
}

.progress-circle-bg {
    fill: none;
    stroke: #f1f1f1;
    stroke-width: 4;
}

.progress-circle-progress {
    fill: none;
    stroke: #E41E2A;
    stroke-width: 4;
    stroke-dasharray: 175;
    stroke-dashoffset: 157.5;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #757373;
}

/* Request Details Card */
.details-card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 20px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px;
}

.detail-item {
    margin-bottom: 20px;
}

.detail-label {
    font-size: 14px;
    color: #757373;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
}

/* Form Styles */
.form-container {
    background-color: white;
    border-top: 3px solid #E41E2A;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.page-title {
    font-size: 24px;
    font-weight: 500;
    padding: 15px 20px;
    margin-bottom: 0;
    color: #333;
    border-bottom: 1px solid #E41E2A;
}

.form-content {
    padding: 20px 80px 40px;
}

.instructions {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-row {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    /* width: 190px; */
    width: 38%;
    text-align: left;
    padding-right: 15px;
    padding-top: 6px;
}

.form-input {
    flex: 1;
    max-width: 350px;
}

.form-control {
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    height: 34px;
    padding: 6px 12px;
}

.form-section-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.required-field::after {
    content: ' *';
    color: #E41E2A;
}

.form-wrap {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 30px !important;
    margin-top: 10px;
}

/* Action Table Styles */
.action-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.action-table td {
    padding: 10px 15px;
    font-size: 14px;
}

.action-required-1 {
    border-bottom: 0px;
    border-right: 1px solid #ccc;
}

/* Button styles */
.next-btn {
    background-color: #E41E2A;
    border-color: #E41E2A;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
}

.next-btn:hover {
    background-color: #c71230;
    border-color: #c71230;
}

/* Radio and Checkbox styles */
.radio-group {
    display: flex;
    gap: 15px;
    padding-top: 5px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input[type="radio"] {
    position: relative;
    margin-right: 5px;
    width: 18px;
    height: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #E41E2A;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin-top: 0 !important;
}

.radio-option input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #E41E2A;
    border-radius: 50%;
}

.form-check-input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid #8B8B8B;
    cursor: pointer;
    background-color: white;
}

.form-check-input[type="checkbox"]:checked {
    background-color: white;
    border-color: #8B8B8B;
    position: relative;
}

.form-check-input[type="checkbox"]:checked::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #01C614;
    font-size: 12px;
}

.form-check-label {
    padding-left: 7px;
    padding-top: 3px;
    color: #2E2E2E;
}

/* Date input icon */
.date-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input-group input {
    padding-right: 30px;
}

.date-icon {
    position: absolute;
    right: 10px;
    color: #999;
    pointer-events: none;
}

/* Responsive styles */
@media (max-width: 767px) {
    .form-content {
        padding: 20px 15px;
    }

    .form-label {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
    }

    .form-input {
        width: 100%;
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .form-wrap {
        padding: 15px !important;
    }

    .form-row .form-input[style] {
        width: 100% !important;
    }

    .action-required-1 {
        border-right: 0px;
        border-bottom: 0px;
        padding-bottom: 0px !important;
    }
}