/*
 * User Profile CSS (Phase 2)
 *
 * @package Eduma-Child
 * @version 1.0.0
 * @author Agung Januar
*/

/* ========================================
   Profile Review System Styles
   ======================================== */

/* Profile Status Banner */
.profile-status-banner {
    margin: 0 0 20px 0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #6c757d;
    background: #f8f9fa;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.status-icon {
    font-size: 24px;
}

.status-label {
    font-size: 18px;
    font-weight: 600;
}

.status-message {
    margin: 10px 0;
    font-size: 15px;
}

.status-hint {
    margin: 10px 0;
    font-size: 14px;
    color: #666;
}

.status-meta {
    margin: 10px 0;
    color: #666;
    font-size: 13px;
}

/* Reviewer Comment Boxes - Colored backgrounds */
.reviewer-comment {
    margin: 15px 0;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid;
}

.reviewer-comment-approved {
    background: #d4edda;
    border-left-color: #28a745;
}

.reviewer-comment-rejected {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.reviewer-label {
    margin: 0 0 10px 0;
    font-weight: 600;
}

.reviewer-text {
    margin: 0;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Profile Submit Section */
.profile-submit-section {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.profile-submit-section .submit-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.profile-submit-section .submit-header {
    color: white;
    flex: 1;
}

.profile-submit-section h4 {
    margin: 0 0 5px;
    color: white;
}

.profile-submit-section p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.profile-submit-section .submit-actions {
    display: flex;
    gap: 10px;
}

.profile-submit-section .lp-button {
    background: white;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
}

.profile-submit-section .btn-submit {
    color: #667eea;
}

.profile-submit-section .btn-resubmit {
    color: #dc3545;
}

.profile-submit-section .btn-view-courses {
    color: #28a745;
}

/* Profile Completion Status Badges */
.profile-completion-status {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.profile-completion-status .status-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.status-badge.completed {
    background: #d4edda;
    color: #155724;
}

.status-badge.incomplete {
    background: #fff3cd;
    color: #856404;
}

.status-badge.info {
    background: #e7f3ff;
    color: #0d47a1;
}

/* ========================================
   User Profile Form Styles
   ======================================== */

/* File Preview Components */
.file-preview-container {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
    position: relative;
}

.file-preview-image {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 5px;
}

.file-preview-pdf {
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.file-preview-pdf .fa-file-pdf-o {
    color: #dc3545;
    font-size: 24px;
}

.file-preview-pdf p {
    font-size: 12px;
    margin: 5px 0 0 0;
}

.file-success-message {
    font-size: 12px;
    color: #28a745;
    margin-top: 5px;
}

.file-success-message-pdf {
    font-size: 12px;
    color: #28a745;
    margin: 5px 0 0 0;
}

.delete-info {
    color: #f57c00;
    font-size: 12px;
    margin-top: 5px;
}

.file-preview-actions {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.file-view-link {
    color: #2196f3;
    text-decoration: none;
    font-size: 13px;
}

.file-delete-btn {
    background-color: #fff !important;
    color: #dc3545;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 12px;
    text-transform: capitalize;
}
.file-delete-btn:hover {
    color: darkred;
}

/* Section Titles */
.section-title-primary {
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.section-title-secondary {
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.section-title-program {
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.section-description {
    font-size: 13px;
    color: #666;
    margin: 0 0 15px 0;
}

/* Info Boxes */
.info-box-blue {
    padding: 15px 20px;
    background: #e7f3ff;
    border-left: 4px solid #2196f3;
    margin-bottom: 20px;
    border-radius: 4px;
}

.info-box-blue p {
    margin: 0;
    color: #0d47a1;
    font-size: 14px;
}

.info-box-light-blue {
    padding: 15px 20px;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    margin-bottom: 20px;
    border-radius: 4px;
}

.info-box-light-blue p.info-title {
    margin: 0 0 5px 0;
    color: #0d47a1;
    font-size: 14px;
    font-weight: 600;
}

.info-box-light-blue p.info-text {
    margin: 0;
    color: #1565c0;
    font-size: 13px;
    line-height: 1.6;
}

/* Form Submit Section */
.form-submit-wrapper {
    margin-top: 20px;
}

.form-message-hidden {
    display: none;
    margin-top: 15px;
}

/* Icon Colors */
.icon-male-blue {
    color: #2196f3;
}

.icon-female-pink {
    color: #e91e63;
}

.icon-document-orange {
    color: #ff9800;
}

/* Radio Label Options (for Program Heilbronn) */
.radio-label-option {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.radio-label-option:last-child {
    margin-bottom: 0;
}

.radio-label-option:hover {
    background: #f8f9fa;
}

.major-description-gray {
    color: #666;
}

