body {
    font-family: "tahoma", "arial", "helvetica", "sans-serif";
    font-size: 8pt;
    color: #FFFFFF;
    margin: 0;
	    background-image: url('https://images.hdqwalls.com/download/wonder-woman-rising-above-ml-1280x1024.jpg');

    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
	    position: relative;

margin-bottom: 30px;
  margin-top: 30px;

    /* Layout flex */
    display: flex;
    flex-direction: column;
    min-height: 100vh;           /* obligatoriu ca footerul să stea jos */
    align-items: center;         /* centrează pe orizontală conținutul */
}

/********** GENERAL TABLE **********/
table {
	border-collapse: collapse;
	border: 0px;
    background-color: trasparent;
	background-position: center;
}
/********** END GENERAL TABLE **********/



.header {
    width: 1024px;
    height: 250px;
	    background-image: url('https://images.hdqwalls.com/download/wonder-woman-she-carries-peace-in-one-hand-tv-1280x720.jpg');
    position: relative;
    flex-shrink: 0;              /* nu se micșorează */
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 16px 16px 0 0;
}

.middle {
    width: 1024px;
    flex: 1;
    background-image: url('https://images.hdqwalls.com/download/thor-holding-mjolnir-in-lightning-storm-cv-1280x1024.jpg');
    border: 0px;
    padding: 20px 0;
    border-collapse: collapse;
    background-position: center;
}

.footer {
    width: 1024px;
    height: 50px;
    background: #b71c1c;
   
    border-radius: 0 0 16px 16px;
    margin: 0;

}




.main-container {
    width: 950px;
    margin: 20px auto;      /* ← cheia! 20px spațiu sus‑jos, auto stânga‑dreapta pentru centrare */
    background: #1e1e2f;
    border-radius: 16px;
    padding: 0px;
    color: #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}






/* Chenar metalizat – negru deschis, vizibil, reutilizabil */
.card-metalic {
    background: #1c1c26;               /* negru metalizat, solid */
    border: 1px solid #3a3a5a;        /* bordură metalică subtilă */
    border-radius: 12px;              /* colțuri rotunjite */
    padding: 18px;                    /* spațiu interior */
    margin-bottom: 20px;              /* distanță față de următorul element */
    max-width: 800px;                 /* lățime maximă implicită */
    margin-left: auto;                /* centrare */
    margin-right: auto;               /* centrare */
    color: #ddd;                      /* text deschis */
    box-shadow: 0 4px 12px rgba(0,0,0,0.5), /* umbră exterioară */
                inset 0 1px 0 rgba(255,255,255,0.05); /* reflexie interioară metalică */
}







.nav-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);   /* semi‑transparent pentru lizibilitate */
    padding: 8px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    border-top: 1px solid #444;
}

/* Caseta utilizator – mai mică, poziționată sus‑dreapta */
.user-box {
    position: absolute;
    top: 8px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px 12px;
    max-width: 220px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    z-index: 5;
}





.profile-private-message {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
}
.profile-private-message p {
    color: #ffaa00;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}







@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}



/********** GENERAL TABLE **********/
table {
	border-collapse: collapse;
	border: 0px;
    background-color: trasparent;
	background-position: center;
}
/********** END GENERAL TABLE **********/










/* === AUTH PAGES === */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}
.auth-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 35px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    color: #ddd;
}
.auth-card h2 {
    margin: 0 0 5px;
    font-size: 24px;
    color: #fff;
}
.auth-subtitle {
    margin-bottom: 25px;
    font-size: 14px;
    color: #aaa;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #bbb;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #2a2a2a;
    color: #eee;
    font-size: 14px;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #66ccff;
}
.btn-primary {
    width: 100%;
    padding: 12px;
    background: #66ccff;
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #4db8e6;
}
.alert-error {
    background: #442222;
    border: 1px solid #ff4444;
    color: #ff8888;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.auth-alt {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}
.auth-alt a {
    color: #66ccff;
}



/* === PROFILE PAGE === */
.profile-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    max-width: 650px;
    margin: 20px auto;
    color: #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.avatar-lg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #66ccff;
}

.avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #66ccff;
    border: 2px solid #66ccff;
}

.profile-title h2 {
    margin: 0 0 5px;
    font-size: 24px;
    color: #fff;
}

.rank-badge {
    display: inline-block;
    /*background: #66ccff;*/
    color: #000;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 8px;
}

.status-badge.disabled {
    background: #ff4444;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: bold;
    color: #bbb;
    width: 30%;
}

.detail-value {
    width: 70%;
    text-align: right;
    color: #eee;
}

.online-badge {
    background: #2d6a2d;
    color: #8eff8e;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.offline-badge {
    background: #555;
    color: #ccc;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.flag-icon {
    vertical-align: middle;
    margin-right: 5px;
}

.profile-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #66ccff;
    color: #000;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #4db8e6;
    color: #000;
}

.btn-cancel {
    display: inline-block;
    padding: 10px 20px;
    background: #444;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    margin-left: 10px;
}

.btn-owner {
    display: inline-block;
    padding: 10px 20px;
    background: #e6b800;
    color: #000;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

.upload-form {
    margin-bottom: 20px;
}

.upload-form input[type="file"] {
    margin: 10px 0;
    color: #ccc;
}

.log-entry {
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 14px;
}

.log-date {
    color: #aaa;
    margin-right: 10px;
}

.pagination {
    margin-top: 15px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #444;
    border-radius: 4px;
    color: #ddd;
    text-decoration: none;
}

.pagination a.active {
    background: #66ccff;
    color: #000;
    border-color: #66ccff;
}








/******************** css profile ****************/



/* === USERS LIST SIMPLĂ === */
.simple-card {
    max-width: 750px;
    margin: 20px auto;
    background: #1e1e2f;
    border-radius: 16px;
    padding: 20px 25px;
    color: #ddd;
}

.simple-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.simple-header h2 {
    margin: 0;
    font-size: 22px;
    color: #fff;
}
.member-count {
    background: rgba(255,255,255,0.08);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #aaa;
}

.user-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-row {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 10px 15px;
    transition: background 0.2s;
}
.user-row:hover {
    background: rgba(255,255,255,0.05);
}

.user-avatar-col {
    position: relative;
    flex-shrink: 0;
}
.user-avatar-col img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #444;
}
.user-avatar-col .avatar-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2a2a3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #66ccff;
    border: 2px solid #444;
}

.status-light {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #1e1e2f;
}
.status-light.on {
    background: #4caf50;
}
.status-light.off {
    background: #666;
}

.user-main {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.username-link {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}
.username-link:hover {
    text-decoration: underline;
}
.disabled-mark {
    color: #ff4444;
    font-size: 12px;
}

.rank-tag {
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
}

.user-details {
    display: flex;
    gap: 20px;
    color: #aaa;
    font-size: 13px;
    white-space: nowrap;
}

.empty-text {
    text-align: center;
    color: #888;
    padding: 30px;
}

.simple-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.simple-pagination a {
    background: rgba(255,255,255,0.05);
    border: 1px solid #444;
    padding: 5px 12px;
    border-radius: 5px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}
.simple-pagination a.active {
    background: #66ccff;
    color: #000;
    border-color: #66ccff;
}
.simple-pagination a:hover:not(.active) {
    background: rgba(255,255,255,0.1);
}



/*end*/


/******************** staff css***************************/



/* === STAFF PAGE === */
.staff-container {
    max-width: 850px;
    margin: 20px auto;
    padding: 0 15px;
}

.staff-title {
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    font-size: 28px;
}

.staff-group {
    margin-bottom: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
}

.staff-group-header {
    padding: 10px 20px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.staff-members {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
}

.staff-member-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 8px 14px 8px 8px;
    text-decoration: none;
    transition: background 0.2s;
    min-width: 160px;
}
.staff-member-card:hover {
    background: rgba(255,255,255,0.08);
}

.staff-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #555;
}
.staff-avatar .avatar-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2a2a3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #66ccff;
    border: 2px solid #555;
}

.staff-username {
    color: #eee;
    font-weight: 500;
    font-size: 14px;
}
.staff-member-card:hover .staff-username {
    color: #fff;
}


/************* end*****/
















/* Chenarul cu datele userului (sus-dreapta) */
.user-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #444;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}


/* Link-uri */
a { color: #66ccff; text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Elemente comune din site (preluate din versiunile anterioare) --- */

/* AUTH PAGES */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}
.auth-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 35px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    color: #ddd;
}
.auth-card h2 {
    margin: 0 0 5px;
    font-size: 24px;
    color: #fff;
}
.auth-subtitle {
    margin-bottom: 25px;
    font-size: 14px;
    color: #aaa;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #bbb;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #2a2a2a;
    color: #eee;
    font-size: 14px;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #66ccff;
}
.btn-primary {
    width: 100%;
    padding: 12px;
    background: #66ccff;
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: #4db8e6;
}
.alert-error {
    background: #442222;
    border: 1px solid #ff4444;
    color: #ff8888;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success {
    background: #224422;
    border: 1px solid #44aa44;
    color: #88ff88;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.auth-alt {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}
.auth-alt a { color: #66ccff; }

/* PROFILE CARD */
.profile-card {
    background: rgba(0,0,0,0.6);
    border: 1px solid #444;
    border-radius: 12px;
    padding: 30px;
    max-width: 650px;
    margin: 20px auto;
    color: #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.7);
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}
.avatar-lg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #66ccff;
}
.avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #66ccff;
    border: 2px solid #66ccff;
}
.rank-badge {
    background: #66ccff;
    color: #000;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
.status-badge.disabled {
    background: #ff4444;
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}
.detail-label {
    font-weight: bold;
    color: #bbb;
    width: 30%;
}
.detail-value {
    width: 70%;
    text-align: right;
}
.online-badge {
    background: #2d6a2d;
    color: #8eff8e;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.offline-badge {
    background: #555;
    color: #ccc;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.flag-icon { vertical-align: middle; margin-right: 5px; }

/* Buttons */
.btn-cancel {
    display: inline-block;
    padding: 10px 20px;
    background: #444;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    margin-left: 10px;
}
.btn-owner {
    background: #e6b800;
    color: #000;
}
.upload-form {
    margin-bottom: 20px;
}
.upload-form input[type="file"] {
    margin: 10px 0;
    color: #ccc;
}

/* Pagination */
.pagination {
    margin-top: 15px;
    text-align: center;
}
.pagination a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #444;
    border-radius: 4px;
    color: #ddd;
    text-decoration: none;
}
.pagination a.active {
    background: #66ccff;
    color: #000;
    border-color: #66ccff;
}

























/***************** cs profile*/

/* === MODERN PUBLIC PROFILE === */
.profile-modern {
    max-width: 680px;
    margin: 20px auto;
    background: #1e1e2f;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    color: #e0e0e0;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* Top section */
.profile-top {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
}

.avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}
.avatar-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #66ccff;
    box-shadow: 0 0 20px rgba(102, 204, 255, 0.3);
}
.avatar-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a3c, #3a3a4c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #66ccff;
    border: 3px solid #66ccff;
    box-shadow: 0 0 20px rgba(102, 204, 255, 0.3);
}
.star-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #ffd700;
    color: #000;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.user-info {
    flex: 1;
}
.username {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.user-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
.rank-badge {
    background: linear-gradient(135deg, #66ccff, #4db8e6);
    color: #000;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}
.badge-disabled {
    background: #ff4444;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.credits-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 8px 16px;
    display: inline-flex;
}
.credits-icon {
    font-size: 18px;
}
.credits-amount {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
}
.credits-label {
    color: #aaa;
    font-size: 14px;
}

/* Stats bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 15px 10px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
    text-align: center;
}
.stat-icon {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}
.stat-value {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #eee;
}
.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
}

/* Details grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.detail-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s, border-color 0.2s;
}
.detail-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
}
.detail-icon {
    font-size: 22px;
    flex-shrink: 0;
}
.detail-content {
    overflow: hidden;
}
.detail-title {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 2px;
}
.detail-text {
    font-weight: 500;
    font-size: 14px;
    color: #ddd;
    word-break: break-word;
}
.flag-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Actions */
.profile-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.btn-modern {
    background: linear-gradient(135deg, #66ccff, #4db8e6);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}
.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,204,255,0.3);
    text-decoration: none;
}
.btn-owner {
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #000;
}
.btn-owner:hover {
    box-shadow: 0 6px 20px rgba(255,215,0,0.3);
}
.upload-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.upload-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
}
.upload-label:hover {
    background: rgba(255,255,255,0.1);
}
.upload-label input[type="file"] {
    display: none;
}
.button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 600px) {
    .profile-top {
        flex-direction: column;
        text-align: center;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        flex-direction: column;
        gap: 10px;
    }
}
/* Păstrează restul stilurilor existente (upload, acțiuni etc.) */






/* style css la profile.php tot full   */

/* ========== PROFILE EDIT COMPACT ========== */
.edit-box {
    max-width: 900px;
    margin: 0 auto 20px auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 20px;
}
.edit-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.edit-row label {
    width: 100px;
    font-size: 13px;
    color: #bbb;
    flex-shrink: 0;
}
.edit-row input,
.edit-row select {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #2a2a2a;
    color: #eee;
    font-size: 13px;
    min-width: 0;
}
.edit-row input:focus,
.edit-row select:focus {
    outline: none;
    border-color: #66ccff;
}
.edit-row .btn-apply {
    padding: 6px 12px;
    background: #66ccff;
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.edit-row .btn-apply:hover {
    background: #4db8e6;
}
.edit-row .btn-apply.ban {
    background: #ff4444;
    color: #fff;
}
.edit-row .btn-apply.ban:hover {
    background: #cc0000;
}
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.checkbox-row label {
    width: 100px;
    font-size: 13px;
    color: #bbb;
    flex-shrink: 0;
}
.checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #66ccff;
    cursor: pointer;
}
.checkbox-row span {
    color: #ccc;
    font-size: 13px;
}
.checkbox-row .btn-apply {
    padding: 4px 10px;
    font-size: 11px;
}
/* Cardul de modificări */
.logs-card {
    background: rgba(30,30,47,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    max-width: 100%;
    height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.logs-card h4 {
    margin: 0 0 12px;
    color: #ffd700;
    font-size: 14px;
    position: sticky;
    top: 0;
    background: rgba(30,30,47,0.95);
    padding-bottom: 8px;
}
.log-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.log-entry .type {
    font-size: 12px;
    min-width: 110px;
    font-weight: 600;
}
.log-entry .details {
    color: #e2e8f0;
    flex: 1;
    margin-left: 10px;
    font-size: 13px;
}
.log-entry .date {
    color: #64748b;
    font-size: 11px;
    white-space: nowrap;
}
.log-entry .del-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 14px;
    margin-left: 8px;
}

/*   end   */





