/* Profile Widget Styles */
.cedear-profile-widget {
    font-family: 'Inter', sans-serif;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.cedear-profile-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.cedear-tab-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    border-bottom: 2px solid transparent;
}

.cedear-tab-btn.active {
    color: #2271b1;
    border-bottom-color: #2271b1;
    font-weight: 600;
}

.cedear-tab-pane {
    display: none;
}

.cedear-tab-pane.active {
    display: block;
}

.cedear-form-group {
    margin-bottom: 15px;
}

.cedear-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.cedear-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.cedear-btn-save {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
}

.cedear-btn-save:hover {
    background: #135e96;
}

.cedear-avatar-preview-container {
    text-align: center;
    margin-bottom: 20px;
}

.cedear-avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

/* Messages */
.cedear-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
    text-align: center;
}

.cedear-msg-success {
    background: #e7f7ed;
    color: #1a7f37;
}

.cedear-msg-error {
    background: #ffebe9;
    color: #cf222e;
}

.cedear-msg-info {
    background: #e0f2fe;
    color: #0969da;
}