    .license-container {
      max-width: 670px;
      width: 100%;
      margin: 0 auto;
      padding: 30px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 25px rgba(69, 76, 173, 0.1);
      position: relative;
      overflow: hidden;
      direction: rtl;
      border: 1px solid #e0e0e0;
      height: 265px;
      overflow-y: auto;
    }
    
    .license-container::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(to bottom, #454cad, #6a5acd);
      transition: all 0.3s ease;
    }
    
    .license-container:hover::before {
      width: 8px;
    }
    
    .license-status {

      border-radius: 10px;
      transition: all 0.4s ease;
      text-align: center;
      position: relative;
    }
    
    .status-checking {
      background-color: #f8f9fa;
      border: 2px dashed #b8e2fb;
      height: 200px;
    }
    
    .status-valid {
      background-color: #f0f9f0;
      border: 2px solid #3dd95b;
      animation: pulse-green 2s infinite;
    }
    
    .status-invalid {
      background-color: #fff0f0;
      border: 2px solid #ff6b6b;
    }
    
    .status-icon {
      font-size: 40px;
      margin-bottom: 0px;
      margin-top: 10px;
      transition: all 0.3s ease;
    }
    
    .status-checking .status-icon {
      color: #454cad;
    }
    
    .status-valid .status-icon {
      color: #28a745;
    }
    
    .status-invalid .status-icon {
      color: #dc3545;
    }
    
    .status-title {
      font-size: 1.3rem;
      margin-bottom: 5px;
      color: inherit;
    }
    
    .status-message {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #555;
    }
    
    .license-details {
      background: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
      margin-top: 25px;
      text-align: right;
      direction: rtl;
      border: 1px solid #e0e0e0;
    }
    
    .detail-row {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
    }
    
    .detail-row:last-child {
      border-bottom: none;
    }
    
    .detail-label {
      color: #666;
      font-weight: bold;
      min-width: 120px;
    }
    
    .detail-value {
      color: #333;
      font-family: "Shabnam-Bold", sans-serif;
      direction: ltr;
      text-align: left;
      flex-grow: 1;
      text-align: right;
    }
    
    .countdown {
      margin-top: 25px;
      font-size: 0.9rem;
      color: #666;
      text-align: center;
      padding: 10px;
      background: rgba(69, 76, 173, 0.05);
      border-radius: 6px;
    }
    
    .action-buttons {
      margin-top: 10px;
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-weight: bold;
      min-width: 150px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    
    .btn i {
      margin-left: 8px;
      font-size: 1.1rem;
    }
    
    .btn-primary {
      background-color: #454cad;
      color: white;
      font-family: 'Shabnam-Bold';
    }
    
    .btn-primary:hover {
      background-color: #3a3f9e;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(69, 76, 173, 0.3);
    }
    
    .btn-secondary {
      background-color: #f0f0f0;
      color: #333;
      border: 1px solid #ddd;
    }
    
    .btn-secondary:hover {
      background-color: #e0e0e0;
      transform: translateY(-2px);
    }
    
    .progress-bar {
      height: 4px;
      background: #e0e0e0;
      border-radius: 2px;
      margin-top: 15px;
      overflow: hidden;
    }
    
    .progress-fill {
      height: 100%;
      background: linear-gradient(to right, #454cad, #6a5acd);
      width: 0;
      transition: width 0.5s ease;
    }
    
    
    @keyframes pulse-green {
      0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
      70% { box-shadow: 0 0 0 12px rgba(40, 167, 69, 0); }
      100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    .spinner {
      animation: spin 1.5s linear infinite;
    }
    
    @media (max-width: 768px) {
      .license-container {
        padding: 25px 15px;
        width: 95%;
      }
      
      .status-icon {
        font-size: 40px;
      }
      
      .status-title {
        font-size: 1.1rem;
      }
      
      .action-buttons {
        flex-direction: column;
        gap: 10px;
      }
      
      .btn {
        width: 100%;
      }
    }