.compte-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.compte-info table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.compte-info th {
    text-align: left;
    padding: 10px 15px;
    width: 150px;
    background: #f1f5f9;
    font-weight: 600;
    color: #0a3e57;
}

.compte-info td {
    padding: 10px 15px;
    color: #1f1f1f;
}

.compte-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 30px;
}

.compte-buttons a.btn-compte {
    color: #fff;
}

.compte-buttons a.btn-compte:hover {
    color: #fff;
}

.btn-compte {
    display: inline-block;
    padding: 14px 20px;
    background-color: #0c79ad;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-compte:hover {
    background-color: #0a5c84;
    color: #fff !important; 
}
