/**
 * DBP Edit Profile Block Frontend Styles
 */

.wp-block-downline-builder-plugin-edit-profile {
    box-sizing: border-box;
}

.dbp-edit-profile-form {
    width: 100%;
    margin: 0 auto;
}

.dbp-edit-profile-field {
    margin-bottom: 15px;
    position: relative;
    box-sizing: border-box;
}

.dbp-edit-profile-field.stacked {
    display: block;
    width: 100%;
}

.dbp-edit-profile-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
}

.dbp-edit-profile-field input[type="text"],
.dbp-edit-profile-field input[type="email"],
.dbp-edit-profile-field textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.dbp-edit-profile-submit {
    margin-top: 20px;
    width: 100%;
    clear: both;
}

.dbp-edit-profile-submit button,
.dbp-edit-profile-submit input[type="submit"] {
    background-color: #007cba;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.dbp-edit-profile-submit button:hover,
.dbp-edit-profile-submit input[type="submit"]:hover {
    opacity: 0.9;
}

/* Stack layout (default for mobile) */
@media (max-width: 768px) {
    .dbp-edit-profile-field {
        width: 100% !important;
    }
}

/* Success message */
.dbp-edit-profile-saved {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Message styling */
.dbp-profile-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

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

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

/* Login required message */
.dbp-login-required {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
} 