/* Custom styles for AFC Request Portal */

/* Status badge colors */
.bg-pending_pm_confirmation {
    background-color: #fd7e14; /* Orange */
}

.bg-under_review {
    background-color: #ffc107; /* Yellow */
}

.bg-need_more_info {
    background-color: #6f42c1; /* Purple */
}

.bg-rejected {
    background-color: #dc3545; /* Red */
}

.bg-processing {
    background-color: #17a2b8; /* Teal */
}

.bg-completed {
    background-color: #28a745; /* Green */
}

/* Timeline styling */
.timeline {
    position: relative;
    list-style: none;
    padding-left: 30px;
    margin: 0;
}

.timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #007bff;
    border: 2px solid #fff;
    top: 5px;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    left: 5px;
    width: 3px;
    height: 35px;
    background-color: #e9ecef;
    top: 15px;
}

.timeline-item:last-child .timeline-marker::before {
    display: none;
}

.timeline-content {
    padding-bottom: 10px;
}

.timeline-title {
    margin-bottom: 5px;
}

.timeline-date {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

/* Form styling */
textarea.form-control {
    min-height: 100px;
}
