/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
  }
  
  .modal-overlay.show {
    display: flex;
  }
  
  .modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 90%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: modalSlideIn 0.3s ease-out;
  }
  
  @keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
  }
  
  .modal-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 24px 0 24px;
    border-bottom: 1px solid #E7DED7;
    padding-bottom: 16px;
    margin-inline: 24px;
  }
  
  .modal-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #383838;
    margin: 0;
  }
  
  .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent !important;
    border: 1px solid #D8321C;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #D8321C !important;
    padding: 0;
    transition: all 0.2s ease;
    z-index: 1;
  }
  
  .modal-close:hover {
    background: #B91C1C;
    transform: scale(1.05);
  }
  
  .modal-body {
    padding: 24px;
    text-align: center;
  }
  .modal-body h3{
    font-weight: 600;
  }

  .modal-body p{
    font-size: 16px;
    color: #6B7280;
  }
  
  .modal-body form{
    margin-bottom: 0;
  }
  
  /* Status Change Modal Styles */
  .status-icon {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .status-icon svg {
    width: 98px;
    height: 98px;
  }
  
  /* Delete Module Modal Styles */
  .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .modal-actions button{
    flex: 1;
  }


.btn-secondary {
    padding: 6px 24px;
    border: none;
    border-radius: 8px;
    background: #FFFFFF;
    color: #D5A465;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .btn-secondary:hover,
  .btn-secondary:focus {
    background: #FFFFFF;
    color: #e3bc88;
  }
  
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid #D5A465;
    border-radius: 8px;
    background: #D5A465;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .btn-primary:hover,
  .btn-primary:focus {
    background: #fff;
    color: #D5A465;
  }
  .btn-primary:hover svg path,
  .btn-primary:focus svg path{
    stroke: #D5A465;
  }
  
  /* Disabled button styles */
  .btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.6;
  }
  
  .btn-primary:disabled:hover {
    background-color: #D5A465;
    border-color: #D5A465;
    color: #fff;
    transform: none;
  }