/**
 * GW Profile Wizard - Cover Image Styles (Simple Version)
 */

.gw-cover-container {
    padding: 20px;
    text-align: center;
}

.gw-cover-current {
    margin-bottom: 20px;
}

.gw-cover-current h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.gw-cover-current img,
.gw-cover-preview img {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ddd;
    display: block;
    margin: 0 auto;
}

.gw-cover-upload-area {
    margin: 20px 0;
}

.gw-cover-image-input {
    display: none;
}

.gw-cover-upload-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gw-cover-upload-btn:hover:not(:disabled) {
    background: #005a87;
}

.gw-cover-upload-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.gw-cover-preview {
    margin-top: 20px;
    display: none;
}

.gw-cover-message {
    margin: 15px 0;
}

.gw-message {
    padding: 10px 16px;
    border-radius: 4px;
    margin: 8px 0;
    display: inline-block;
    font-size: 14px;
}

.gw-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.gw-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.gw-message-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.gw-cover-container.gw-uploading {
    opacity: 0.8;
}

.gw-cover-skip-note {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    color: #6c757d;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gw-cover-container {
        padding: 15px;
    }
    
    .gw-cover-upload-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Integration with wizard styles */
.gw-profile-wizard-step.gw-cover-step {
    min-height: 300px;
}

.gw-cover-step .gw-profile-wizard-description {
    margin-bottom: 20px;
}