/* css/profil.css */

.profil-section {
    background: var(--background-secondary);
    padding: 1rem;
    border: 0.1rem solid var(--border-color);
    border-radius: 0.313rem;
    max-width: 600px;
    margin: 2rem auto;
    color: var(--text-color);
  }
  
  .profil-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  
  #updateProfileForm {
    display: flex;
    flex-direction: column;
  }
  
  #updateProfileForm label {
    margin-top: 1rem;
  }
  
  #updateProfileForm input {
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 0.063rem solid var(--border-color);
    border-radius: 0.313rem;
    background-color: var(--background-color);
    color: var(--text-color);
  }
  
  #updateProfileForm button {
    margin-top: 1.5rem;
    padding: 0.5rem;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 0.313rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #updateProfileForm button:hover {
    background: var(--primary-hover-color);
  }
  

  #updatePasswordForm{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #updatePasswordForm input {
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 0.063rem solid var(--border-color);
    border-radius: 0.313rem;
    background-color: var(--background-color);
    color: var(--text-color);
  }

  #updatePasswordForm label {
    margin-top: 1rem;
  }

  #updatePasswordForm button {
    margin-top: 1.5rem;
    padding: 0.5rem;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 0.313rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  #updatePasswordForm button:hover {
    background: var(--primary-hover-color);
  }
  

  .invoice-list {
    list-style-type: none;
    padding: 0;
  }
  
  .invoice-list li {
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .invoice-list li:last-child {
    border-bottom: none;
  }
  

  .invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }
  
  .invoice-table th, .invoice-table td {
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    text-align: center;
  }
  
  .invoice-table th {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-weight: bold;
  }
  
  .invoice-table tr:nth-child(even) {
    background-color: var(--background-secondary);
  }
  
  .download-btn {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .download-btn:hover {
    color: var(--primary-hover-color);
  }
  