/* WRAPPER */
.account-wrapper {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    padding: 40px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* SIDEBAR */
.account-sidebar {
    background: #1B4481;
    padding: 24px;
    border-radius: 16px;
    color: #fff;
    height: fit-content;
}

.account-avatar {
    text-align: center;
    margin-bottom: 24px;
}

.account-avatar img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.account-sidebar a {
    display: block;
    padding: 12px 14px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    transition: 0.2s ease;
    font-weight: 500;
}

.account-sidebar a:hover {
    background: rgba(255,255,255,0.12);
}

.account-sidebar a.active {
    background: #FF6B00;
}

/* CONTENT */
.account-content {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    min-width: 0;
}

.account-content h2 {
    margin-top: 0;
    margin-bottom: 24px;
}

/* FORM */
.account-content input {
    width: 100%;
    padding: 12px 5px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.account-content button {
    padding: 12px 22px;
    background: #FF6B00;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.account-content button:hover {
    background: #e55f00;
}

/* AVATAR */
.avatar-clickable {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.avatar-img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
}

.avatar-overlay {
    position: absolute;
    inset: 0;
    width: 120px;
    height: 120px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: 0.25s ease;
    text-align: center;
    padding: 10px;
}

.avatar-clickable:hover .avatar-overlay {
    opacity: 1;
}

@media (hover: none) {
    .avatar-overlay {
        opacity: 1;
        font-size: 12px;
    }
}

/* MINI AUCTION */
.mini-auction {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.mini-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.mini-info {
    min-width: 0;
}

.mini-info h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
}

.mini-info a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
}

.mini-info a:hover {
    color: #7c3aed;
}

.mini-badge {
    font-size: 13px;
    font-weight: 600;
}

.mini-badge.active {
    color: #2563eb;
}

.mini-badge.won {
    color: #16a34a;
}

/* LOGO */
.auth-logo {
    text-align: center;
    margin-bottom: 25px;
}

.auth-logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

/* HEADER AVATAR */
.header-avatar {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.header-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.35);
    transition: all 0.2s ease;
}

.header-avatar img:hover {
    border-color: #ff6b00;
    transform: scale(1.05);
}

/* TABLET */
@media (max-width: 991px) {
    .account-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 18px;
    }

    .account-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 18px;
    }

    .account-avatar {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }

    .account-sidebar a {
        margin-bottom: 0;
        text-align: center;
    }

    .account-content {
        padding: 24px 18px;
    }
}

/* MOBILE */
@media (max-width: 767px) {
    .account-wrapper {
        padding: 16px;
        gap: 16px;
    }

    .account-sidebar {
        grid-template-columns: 1fr;
        padding: 16px;
        border-radius: 14px;
    }

    .account-content {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .mini-auction {
        flex-direction: column;
        align-items: flex-start;
    }

    .mini-thumb img {
        width: 100%;
        max-width: 100px;
        height: auto;
    }

    .auth-logo img {
        max-width: 200px;
    }

    .header-avatar img {
        width: 34px;
        height: 34px;
    }
}

/*elfelejtett jelszo*/

.ua-reset-wrapper{
    display:flex;
    justify-content:center;
    padding:60px 20px;
}

.ua-reset-box{
    background:white;
    padding:40px;
    max-width:420px;
    width:100%;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.ua-reset-box h2{
    margin-bottom:10px;
}

.ua-reset-box p{
    margin-bottom:25px;
    color:#666;
}

.ua-reset-form label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

.ua-reset-form input{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #ddd;
    margin-bottom:20px;
}

.ua-reset-form button{
    width:100%;
    padding:12px;
    border:none;
    background:#1F4FFF;
    color:white;
    border-radius:8px;
    font-weight:600;
    cursor:pointer;
}

.ua-reset-form button:hover{
    background:#173ed1;
}

.ua-reset-error{
    margin-top:20px;
    padding:12px;
    background:#ffe6e6;
    color:#c00;
    border-radius:6px;
}

.ua-reset-success{
    margin-top:20px;
    padding:12px;
    background:#e6ffe9;
    color:#1a7a2f;
    border-radius:6px;
}

/*kyc csini*/

.kyc-card{
    background:#fff;
    padding:10px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    max-width:500px;
}

.kyc-card h3{
    margin-top:0;
    font-size:22px;
}

.kyc-status{
    display:inline-block;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.kyc-status.approved{
    background:#e6f9ed;
    color:#16a34a;
}

.kyc-status.pending{
    background:#fff7e6;
    color:#d97706;
}

.kyc-status.rejected{
    background:#ffe6e6;
    color:#dc2626;
}

.kyc-desc{
    font-size:16px;
    color:#666;
    margin-bottom:20px;
}

.kyc-time{
    font-size:13px;
    color:#999;
    margin-bottom:10px;
}

.kyc-upload-box{
    border:2px dashed #ddd;
    border-radius:10px;
    text-align:center;
    padding:30px;
    cursor:pointer;
    transition:0.2s;
}

.kyc-upload-box:hover{
    border-color:#ff6b00;
    background:#fff7f2;
}

.kyc-upload-box input{
    display:none;
}

.upload-inner span{
    display:block;
    font-size:12px;
    color:#999;
    margin-top:5px;
}

.kyc-btn{
    margin-top:20px;
    background:#ff6b00;
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
}

.kyc-btn:hover{
    background:#e55a00;
}


.kyc-help-toggle{
    cursor:pointer;
    font-size:14px;
    color:#3b82f6;
    margin-bottom:10px;
    font-weight:600;
    transition:0.2s;
}

.kyc-help-toggle:hover{
    color:#1d4ed8;
}

.kyc-help-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.3s ease;
    background:#f8fafc;
    border-radius:8px;
    padding:0 15px;
    font-size:14px;
}

.kyc-help-content.open{
    max-height:200px;
    padding:15px;
}

.kyc-help-content ul{
    margin:10px 0 0;
    padding-left:18px;
}

.kyc-status.waiting{
    background:#eef2ff;
    color:#4338ca;
}

/*progressbar*/

.profile-progress{
    background:#fff;
    padding:20px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.progress-label {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e55a00;
    text-align: center;
    font-weight: 500;
}

.progress-bar{
    width:100%;
    height:10px;
    background:#eee;
    border-radius:6px;
    overflow:hidden;
}

.progress-fill{
    height:100%;
    transition:width 0.5s ease;
}

/* SZÍNEK */

.progress-fill.red{
    background:#dc2626;
}

.progress-fill.orange{
    background:#e55a00;
}

.progress-fill.green{
    background:#16a34a;
}

.progress-cta {
    margin-top: 12px;
    text-align: center;
    color: #e55a00;
    font-size: 15px;
    font-weight: 600;
}



/*auth login/register*/

.auth-box {
    max-width: 400px;
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auth-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.auth-box h2 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #e55a00;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.auth-btn:hover {
    background: #e55a00;
}

/*auth linkek*/


.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.auth-links a {
    color: #2563eb;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-switch-text {
    margin-bottom: 4px;
    font-size: 18px;
}

.login_small {
    margin-top: 0;
    margin-bottom: 15px;
}

.login_small a {
    color: #2563eb;
    text-decoration: none;
    font-size: 15px;
}

.login_small a:hover {
    text-decoration: underline;
}