/* استایل گرافیکی اصلی با تم دارک و قرمز */
@font-face {
  font-family: 'Vazirmatn';
  src: url('./fonts/Vazirmatn-Regular.woff2') format('woff2'),
       url('./fonts/Vazirmatn-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('./fonts/Vazirmatn-Medium.woff2') format('woff2'),
       url('./fonts/Vazirmatn-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('./fonts/Vazirmatn-Bold.woff2') format('woff2'),
       url('./fonts/Vazirmatn-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('./fonts/Vazirmatn-Black.woff2') format('woff2'),
       url('./fonts/Vazirmatn-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
*{
  font-family: 'Vazirmatn', sans-serif;
}
body {
    background-color: #111;
    color: #f5f5f5;
    font-family: 'Vazir', sans-serif !important;
    direction: rtl;
    margin: 0;
    padding: 0;
  }
  
  .container, .box, .form-box, .card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(229, 9, 20, 0.1);
  }
  
  .btn-primary, .btn-danger {
    background-color: #e50914;
    border: none;
    color: #fff;
  }
  
  .btn-primary:hover, .btn-danger:hover {
    background-color: #ff1a1a;
  }
  
  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="number"],
  select, textarea {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
  }
  
  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #e50914;
    box-shadow: 0 0 5px rgba(229, 9, 20, 0.4);
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #e50914;
    text-align: center;
  }
  
  .text-justify {
    text-align: justify;
  }
  
  .alert-danger {
    background-color: #ff1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
  }
  
  .table-dark th, .table-dark td {
    background-color: #1f1f1f !important;
    color: #fff;
  }
  
  .footer {
    text-align: center;
    color: #777;
    font-size: 13px;
    padding: 15px 0;
    margin-top: 20px;
  }
  