/* contact/seller form alternative styles */
.CLform-wrapper {
    max-width: 600px;
    margin: 20px auto;
    padding: 30px;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.CLform-input,
.CLform-textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Added for better box model handling */
}

.CLform-submit {
    background: #024f2b;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background .3s;
}

.CLform-submit:hover {
    background: #03703e;
}

.CLform-status {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
}

.CLform-loading::after {
    content: ' Sending...';
    color: #555;
}

.CLform-success {
    color: green;
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
}

.CLform-error {
    color: red;
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
}

/* Seller login form code snippet styles */
.setup-header {
    color: #024f2b;
    margin-bottom: 15px;
}

.closing-message {
    margin-top: 30px;
    font-size: 1.1em;
    color: #666;
}

.account-link {
    text-decoration: none; /* Remove underline from link */
}

.account-button {
    background-color: #f4ae0b; /* Brand color */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-left: 10px; /* Space between text and button */
}

.account-button:hover {
    background-color: #e89c0a; /* Darker shade on hover */
}

.seller-setup-container {
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.6s ease-in-out;
}

.login-form {
    padding: 30px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.login-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    box-sizing: border-box; /* Added for better box model handling */
}

.login-form input[type="submit"] {
    width: 100%; /* Make button full width */
    background-color: #f4ae0b;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.login-form input[type="submit"]:hover {
    background-color: #e89c0a;
}

.subcategory-listbecomeseller {
    display: none; /* Hide the list by default */
    list-style: none; /* Remove list bullets */
    padding: 0;
    margin-top: 10px;
}

.togglebecomeseller:checked + label + .subcategory-listbecomeseller {
    display: block; /* Show the list when the checkbox is checked */
}

.form-itembecomeseller {
    margin-top: 10px;
}

/* Contact Form 7 submit button message styles */
.wpcf7-response-output {
    color: #4CAF50; /* Green text for positive feedback */
    font-size: 18px; /* Slightly larger font size */
    font-weight: bold; /* Bold text for emphasis */
    text-align: center; /* Center the text */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    letter-spacing: 1px; /* Slightly increased letter spacing */
    margin-top: 20px; /* Space above the message */
    z-index: 1000; /* Ensure it stays on top of other elements */
}