/* 
 * Report CSS
 * Custom styles for the report page
 */

/* Success Card */
.success-card {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
}

/* Selected Plan */
.selected-plan {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.provider-logo {
    max-height: 30px;
    max-width: 80px;
    object-fit: contain;
}

.plan-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.price {
    font-weight: bold;
    color: #333;
}

.period {
    color: #666;
    margin-right: 15px;
}

.data {
    font-weight: bold;
    color: #0d6efd;
}

/* Info Card */
.info-card {
    background-color: #f8f9fa;
    margin-top: 30px;
}

.info-card h3 {
    color: #0d6efd;
    font-size: 1.5rem;
}

.info-card ul {
    padding-left: 1.5rem;
}

/* Form Styling */
textarea.form-control {
    min-height: 120px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .selected-plan {
        padding: 10px;
    }
}
