.upf-profile-form input[type="text"],
.upf-profile-form input[type="email"],
.upf-profile-form input[type="password"],
.upf-profile-form input[type="file"] {
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* sekce */
.upf-section {
    background: #f7f7f7;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* tlačítka jednotné */
.button.upf-btn {
    background: #0073aa;
    color: #fff;
    padding: 8px 14px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 400;
    text-decoration: none;
    border: none;
    font-size: 1.6rem;
    display: inline-block;
    margin-top: 5px;
    text-transform: none;
}

/* stylované tlačítko pro výběr souboru (skryje název) */
.upf-file-upload {
    display: inline-block;
    padding: 6px 15px;
    background: #0073aa;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    font-weight: 400;
    position: relative;
}
.upf-file-upload input[type="file"] {
    display: none;
}

/* Progress bar */
#upf-upload-progress {
    width: 100%;
    background: #eee;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}
#upf-upload-progress .bar {
    height: 100%;
    width: 0;
    background: #0073aa;
    border-radius: 4px;
    transition: width 0.25s ease;
}

/* Přepínače (toggles) */
.upf-toggle-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.upf-toggle {
    padding: 6px 12px;
    border: 1px solid #0073aa;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s, color 0.2s, transform 0.06s;
    background: transparent;
    color: #0073aa;
}

.upf-toggle:active {
    transform: scale(0.98);
}

.upf-toggle input[type="checkbox"] {
    display: none;
}

.upf-toggle.active {
    background: #0073aa;
    color: #fff;
}

/* úspěch / chyba */
.upf-success { color: green; margin-bottom: 10px; display: inline-block; }
.upf-error { color: red; margin-bottom: 10px; display: inline-block; }

/* sekce editace profilu */
#upf-profile-edit, #upf-profile-display {
    margin-bottom: 15px;
}

#upf-password-fields {
    margin-top: 10px;
}

.entry-content .upf-section h3, .entry-content .upf-section h4 {
    margin-top: 0;
}

#upf-picture-preview img {
    border-radius: 50%;
}
