/* Nurse Resume Builder - CSS Styles */

/* Container */
.elementor-element-57cda46.rbsucces-cont {
    display: none;
}
.nrb-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-family: "Manrope", Sans-serif;
}

/* Progress Bar */
.nrb-btn {
    background: #155DFC !important;
    border: 1px solid #155DFC !important;
    color: #fff !important;
    border-radius: 12px 12px 12px 12px;
    padding: 10px 25px 10px 25px;
}
.nrb-btn:hover{
    background: #009689 !important;
    border: 1px solid #009689 !important;	
}
.nrb-add-btn{
    background: #155DFC !important;
    border: 1px solid #155DFC !important;
    color: #fff !important;
    border-radius: 12px 12px 12px 12px;
    padding: 10px 25px 10px 25px;
}
.nrb-add-btn:hover{
    background: #009689 !important;
    border: 1px solid #009689 !important;	
}
.nrb-progress {
    margin-bottom: 30px;
}
.nrb-remove-btn{
    background: #155DFC !important;
    border: 1px solid #155DFC !important;
    color: #fff !important;
    border-radius: 12px 12px 12px 12px;
    padding: 10px 25px 10px 25px;
}
.nrb-remove-btn:hover{
    background: #009689 !important;
    border: 1px solid #009689 !important;	
}
div#nrbSuccess {
    display: none;
}
.nrb-progress-bar {
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 15px;
    overflow: hidden;
}

.nrb-progress-fill {
    height: 100%;
    background-color: #155DFC;
    width: 12.5%;
    transition: width 0.3s ease;
}

.nrb-steps {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.nrb-step {
    text-align: center;
    flex: 1;
    padding: 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nrb-step.active {
    opacity: 1;
    font-weight: 600;
    color: #155DFC;
}

.nrb-step.completed {
    opacity: 0.8;
    color: #28a745;
}

/* Form Steps */
.nrb-step-content {
    display: none;
    padding: 20px 0;
}

.nrb-step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nrb-step-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000;
}

.nrb-required-note,
.nrb-optional-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.nrb-optional-note {
    font-style: italic;
}

/* Form Fields */
.nrb-field {
    margin-bottom: 20px;
}

.nrb-field label {
        display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.nrb-field input[type="text"],
.nrb-field input[type="email"],
.nrb-field input[type="tel"],
.nrb-field input[type="url"],
.nrb-field input[type="date"],
.nrb-field textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #cccc;
    border-radius: 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.nrb-field input:focus,
.nrb-field textarea:focus {
    outline: none;
    border-color: #155DFC;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.nrb-field textarea {
    resize: vertical;
    min-height: 80px;
}

.nrb-help {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.nrb-char-counter {
    display: block;
    font-size: 12px;
    color: #666;
    text-align: right;
    margin-top: 4px;
}

/* Field Rows */
.nrb-field-row {
    display: flex;
    gap: 15px;
}

.nrb-field-row .nrb-field {
    flex: 1;
}

/* Checkbox */
.nrb-checkbox-label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
}

.nrb-checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Repeatable Items */
.nrb-repeatable-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.nrb-repeatable-item:first-child .nrb-remove-btn {
    display: none !important;
}

/* Buttons */
.nrb-add-btn {
    background-color: #fff;
    border: 2px dashed #155DFC;
    color: #155DFC;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.nrb-add-btn:hover {
    background-color: #f0f7fb;
    border-color: #005177;
}

.nrb-remove-btn {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.nrb-remove-btn:hover {
    background-color: #c82333;
}

/* Navigation Buttons */
.nrb-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.nrb-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.nrb-btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.nrb-btn-secondary:hover {
    background-color: #5a6268;
}

.nrb-btn-primary {
    background-color: #155DFC;
    color: #fff;
}

.nrb-btn-primary:hover {
    background-color: #005177;
}

.nrb-btn-success {
    background-color: #28a745;
    color: #fff;
}

.nrb-btn-success:hover {
    background-color: #218838;
}

/* Validation */
.nrb-field.error input,
.nrb-field.error textarea {
    border-color: #dc3545;
}

.nrb-error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

/* Loading Overlay */
.nrb-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.nrb-loading-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.nrb-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #155DFC;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error Display */
.nrb-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    border: 1px solid #f5c6cb;
}

/* Success Message */
.nrb-success {
        background-color: #009689;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
    text-align: center;
}

.nrb-success p {
    margin: 0 0 15px 0;
    font-size: 16px;
}

/* Download Button */
#downloadBtn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#downloadBtn:hover {
    background-color: #218838;
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .nrb-container {
        padding: 15px;
    }

    .nrb-steps {
        font-size: 10px;
    }

    .nrb-field-row {
        flex-direction: column;
        gap: 0;
    }

    .nrb-navigation {
        flex-direction: column;
    }

    .nrb-btn {
        width: 100%;
    }
	.nrb-steps {
    display: none;
}
	.nrb-progress {
    margin-bottom: 0px;
}
}

