/* Resume Builder Specific Styles */

.file-upload-area {
    border: 2px dashed #666;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.file-upload-area:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.upload-text {
    color: #e0e0e0;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.upload-subtext {
    color: #999;
    font-size: 14px;
}

.file-name {
    color: #4CAF50;
    margin-top: 10px;
    font-weight: bold;
    padding: 8px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 4px;
    display: inline-block;
}

/* Form styling improvements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
}

/* Select dropdown styling */
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #666;
    border-radius: 4px;
    background: #1a1a1a;
    color: #e0e0e0;
    font-size: 14px;
}

select:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

/* Input field styling */
input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #666;
    border-radius: 4px;
    background: #1a1a1a;
    color: #e0e0e0;
    font-size: 14px;
}

input[type="text"]:focus {
    border-color: #ff6b35;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

input[type="text"]::placeholder {
    color: #999;
    font-style: italic;
}

/* Loading and error styles */
.loading {
    text-align: center;
    padding: 40px;
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Result content styling */
.result-content {
    margin-top: 20px;
}

.result-content h1,
.result-content h2,
.result-content h3 {
    color: #ff6b35;
    margin-top: 20px;
    margin-bottom: 10px;
}

.result-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.result-content ul,
.result-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.result-content li {
    margin-bottom: 5px;
}