/**
 * Buttons CSS Module
 * 
 * All button variants, states, and layouts for the Zoho Profile Creation Plugin.
 * This module handles primary, secondary, and specialized button styling.
 */

/* Primary apply button */
#oeg-apply-button {
    display: block;
    margin-bottom: 20px;
    padding: 12px 24px;
    height: 40px;
    background-color: #204f70;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

#oeg-apply-button:hover:not(:disabled) {
    background-color: #183d5a;
}

#oeg-apply-button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

/* Login/Signup button state */
#oeg-apply-button.oeg-apply-button-login {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

#oeg-apply-button.oeg-apply-button-login:hover {
    background-color: #0056b3;
}

/* Generic container buttons */
#zoho-profile-creation-container button {
    padding: 8px 15px;
    margin: 5px;
    background-color: #204f70;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#zoho-profile-creation-container button:hover {
    background-color: #183d5a;
}

/* Button container for resume results page */
.oeg-button-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 5px;
    margin-left: 0;
    padding: 0;
}

/* Secondary button styling */
.oeg-button-secondary {
    background-color: #315C2B !important;
    color: white;
    padding: 10px 20px;
    height: 39px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    flex: 0 0 auto;
}

.oeg-button-secondary:hover {
    background-color: #254622 !important;
}

/* Primary button styling */
.oeg-button-primary {
    background-color: #204f70 !important;
    color: white;
    padding: 10px 20px;
    height: 39px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    flex: 0 0 auto;
}

.oeg-button-primary:hover:not(:disabled) {
    background-color: #183d5a;
}

.oeg-button-primary:disabled {
    background-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

/* Specific margin overrides for form buttons */
#zoho-profile-creation-container #continue-submission-button.oeg-button-primary {
    margin-left: 0px !important;
}

#zoho-profile-creation-container #cancel-edit-button.oeg-button-secondary {
    margin-right: 0px !important;
}

/* Button state classes */
.oeg-apply-button-enabled {
    background-color: #204f70;
    cursor: pointer;
}

.oeg-apply-button-enabled:hover {
    background-color: #183d5a;
}

.oeg-apply-button-disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
}

.oeg-apply-button-error {
    background-color: #dc3545;
    color: white;
    cursor: pointer;
}

/* View resume button */
.oeg-view-resume-button {
    background-color: #6c757d;
    color: white;
    padding: 10px 12px;
    height: 38px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85em;
    transition: background-color 0.3s ease;
}

.oeg-view-resume-button:hover {
    background-color: #5a6268;
}

/* Use previous button */
#zoho-profile-creation-container .oeg-use-previous-button {
    background-color: #204f70;
    color: white;
    padding: 10px 20px;
    height: 38px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-bottom: 35px !important;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

#zoho-profile-creation-container .oeg-use-previous-button:hover {
    background-color: #183d5a;
}

/* Choose file button */
.oeg-file-upload-container .choose-file-button {
    background-color: #315C2B;
    color: white;
    padding: 8px 15px;
    height: 38px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.oeg-file-upload-container .choose-file-button:hover {
    background-color: #254622;
}

/* Upload resume button */
.oeg-file-upload-container .upload-resume-button {
    background-color: #204f70 !important;
    color: white;
    padding: 8px 15px;
    height: 38px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.oeg-file-upload-container .upload-resume-button:hover {
    background-color: #183d5a !important;
}