    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
    }

    .modal-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #f3ecd2;
      width: 90%;
      max-width: 800px;
      max-height: 90vh;
      overflow-y: auto;
      border: 4px ridge #575757;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .modal-header {
      background: linear-gradient(145deg, #f1bc0f, #e5a80f);
      padding: 20px 30px;
      border-bottom: 3px solid #575757;
      border-radius: 11px 11px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal-header h2 {
      margin: 0;
      color: #16141b;
      font-size: 2.2rem;
      font-family: Arial, sans-serif;
      text-shadow: -1px -1px 0 #8c8c8c, 1px -1px 0 #8c8c8c, -1px 1px 0 #8c8c8c, 1px 1px 0 #8c8c8c;
    }

    .close {
      color: #16141b;
      font-size: 3rem;
      font-weight: bold;
      cursor: pointer;
      line-height: 1;
      transition: color 0.3s ease;
    }

    .close:hover {
      color: #8c8c8c;
    }

    /* Styles du formulaire vintage */
    .vintage-form {
      padding: 30px;
      background-color: #f3ecd2;
    }

    .form-row {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      flex: 1;
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: #16141b;
      font-weight: bold;
      font-size: 1.1rem;
      text-shadow: -1px -1px 0 #8c8c8c, 0.5px -0.5px 0 #8c8c8c, -0.5px 0.5px 0 #8c8c8c, 0.5px 0.5px 0 #8c8c8c;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 3px solid #8b4513;
      border-radius: 8px;
      background-color: #faf7e8;
      color: #16141b;
      font-size: 1rem;
      box-sizing: border-box;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #f1bc0f;
      background-color: #ffffff;
      box-shadow: 0 0 8px rgba(241, 188, 15, 0.4);
    }

    .form-group select[multiple] {
      height: 120px;
    }

    .form-group small {
      display: block;
      margin-top: 5px;
      color: #666;
      font-size: 0.9rem;
      font-style: italic;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 80px;
    }

    .form-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .cancel-btn,
    .submit-btn {
      padding: 12px 30px;
      font-size: 1.2rem;
      font-weight: bold;
      border: 3px solid #575757;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      min-width: 120px;
    }

    .cancel-btn {
      background: linear-gradient(145deg, #8c8c8c, #757575);
      color: #ffffff;
    }

    .cancel-btn:hover {
      background: linear-gradient(145deg, #757575, #8c8c8c);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .submit-btn {
      background: linear-gradient(145deg, #f96518, #e5570f);
      color: #ffffff;
    }

    .submit-btn:hover {
      background: linear-gradient(145deg, #e5570f, #f96518);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    /* Modal de confirmation */
    .confirmation-modal {
      max-width: 500px;
      text-align: center;
    }

    .confirmation-header {
      background: linear-gradient(145deg, #28a745, #22923e);
      padding: 25px;
      border-radius: 11px 11px 0 0;
      border-bottom: 3px solid #575757;
    }

    .confirmation-header h2 {
      margin: 0;
      color: #ffffff;
      font-size: 2.5rem;
      font-family: Arial, sans-serif;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .confirmation-body {
      padding: 30px;
      background-color: #f3ecd2;
    }

    .confirmation-body p {
      margin: 15px 0;
      color: #16141b;
      font-size: 1.2rem;
      line-height: 1.5;
    }

    .confirm-ok-btn {
      padding: 15px 40px;
      font-size: 1.3rem;
      font-weight: bold;
      background: linear-gradient(145deg, #f1bc0f, #e5a80f);
      color: #16141b;
      border: 3px solid #575757;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin: 20px 0;
    }

    .confirm-ok-btn:hover {
      background: linear-gradient(145deg, #e5a80f, #f1bc0f);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }