.user-account-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.account-header {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.account-header h2 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 28px;
}

.account-tabs {
    background: white;
    border-radius: 15px;
    padding: 8px;
    margin-bottom: 30px;
    display: flex;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tab-button {
    background: transparent;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s;
    flex: 1;
    font-weight: 500;
}

.tab-button.active {
    background: #3890ad;
    color: white;
}

.tab-content {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tab-content.active {
    display: block;
}

.orders-table {
    overflow: hidden;
    border-radius: 10px;
    margin-top: 20px;
}

.orders-table table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #f1f3f4;
}

.orders-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

/* Видалено глобальний стиль body - використовуємо тільки класи блоків */

.status {
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.status-in_progress {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.status-completed {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.status-cancelled {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.logout-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 15px;
    margin-top: 20px;
    font-weight: 500;
    transition: transform 0.2s;
}

.logout-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.tab-content h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
}

.orders-table tr:hover {
    background: #f8f9fa;
}

.profile-info {
    margin-bottom: 30px;
}

.profile-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.show-password-btn {
    background: #3890ad;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

.password-hidden {
    font-family: monospace;
    letter-spacing: 2px;
}

.login-btn {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    margin: 20px auto 0;
    transition: transform 0.2s;
    text-align: center;
    max-width: 200px;
}

.login-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Примусово показуємо поле пароля в реєстрації */
.ct-account-modal .ct-tabs-item[data-id="register"] .ct-form-group[data-field="password"] {
    display: block !important;
}

.ct-account-modal input[name="user_pass"] {
    display: block !important;
}

@media (max-width: 768px) {
    .orders-table {
        overflow-x: auto;
    }
    
    .account-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: left;
    }
}