 .status-container {
     width: 100%;
     max-width: 800px;
     background: var(--card-bg);
     border-radius: var(--radius);
     box-shadow: var(--shadow);
     overflow: hidden;
     margin: 0 auto;
     margin-top: 50px;
 }

 .status-header {
     background: var(--gradient);
     color: white;
     padding: 30px;
     text-align: center;
     display: flex;
     flex-direction: column;
 }

 .status-header h1 {
     font-family: 'Montserrat', sans-serif;
     font-size: 2.5rem;
     margin-bottom: 10px;
 }

 .status-header p {
     font-size: 1.1rem;
     opacity: 0.9;
 }

 .status-content {
     padding: 10px;
 }

 .form-container {
     margin-bottom: 20px;
 }

 .form-title {
     font-size: 1.5rem;
     color: var(--primary);
     margin-bottom: 10px;
     text-align: center;
 }

 .input-group {
     margin-bottom: 25px;
 }

 .input-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
     color: var(--dark);
 }

 .input-with-icon {
     position: relative;
 }

 .input-with-icon i {
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--gray);
     font-size: 1.2rem;
 }

 .form-input {
     width: 100%;
     padding: 15px 15px 15px 50px;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 1.1rem;
     transition: all 0.3s;
 }

 .form-input:focus {
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
     outline: none;
 }

 .submit-btn {
     background: var(--primary);
     color: white;
     border: none;
     border-radius: 50px;
     padding: 15px 30px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     display: block;
     width: 100%;
     text-align: center;
 }

 .results-container {
     display: none;
     background: #f9f9f9;
     border-radius: var(--radius);
     padding: 25px;
     margin-top: 30px;
     border: 1px solid #eee;
 }

 .results-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
     padding-bottom: 15px;
     border-bottom: 2px solid var(--primary);
 }

 .results-title {
     font-size: 1.5rem;
     color: var(--primary);
     font-weight: 600;
 }

 .user-info {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 25px;
 }


 .ticket-status {
     background: white;
     border-radius: var(--radius);
     padding: 20px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     margin-bottom: 20px;
 }

 .status-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 15px;
 }

 .ticket-number {
     font-size: 1.2rem;
     font-weight: 600;
     color: var(--primary);
 }

 .status-badge {
     padding: 6px 15px;
     border-radius: 20px;
     font-weight: 500;
     font-size: 0.9rem;
 }

 .status-won {
     background: #e8f5e9;
     color: #2e7d32;
 }

 .status-pending {
     background: #fff3e0;
     color: #ef6c00;
 }

 .status-not-won {
     background: #ffebee;
     color: #c62828;
 }

 .ticket-details {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .detail-item {
     margin-bottom: 10px;
 }

 .detail-label {
     font-size: 0.9rem;
     color: var(--gray);
     margin-bottom: 5px;
 }

 .detail-value {
     font-weight: 500;
     color: var(--dark);
 }

 .prize-amount {
     font-weight: 700;
     color: var(--accent);
     font-size: 1.2rem;
 }

 .action-buttons {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
     margin-top: 25px;
 }

 .action-btn {
     padding: 12px;
     border-radius: 8px;
     font-weight: 500;
     text-align: center;
     cursor: pointer;
     transition: all 0.3s;
 }

 .btn-primary {
     background: var(--primary);
     color: white;
 }

 .btn-primary:hover {
     background: var(--secondary);
 }

 .btn-outline {
     background: transparent;
     border: 1px solid var(--primary);
     color: var(--primary);
 }

 .btn-outline:hover {
     background: var(--primary);
     color: white;
 }

 .no-results {
     text-align: center;
     padding: 30px;
     color: var(--gray);
 }

 .no-results i {
     font-size: 3rem;
     margin-bottom: 15px;
     color: #bdbdbd;
 }

 @media (max-width: 768px) {
     .status-header h1 {
         font-size: 2rem;
     }

     .ticket-details {
         grid-template-columns: 1fr;
     }

     .action-buttons {
         grid-template-columns: 1fr;
     }

     .status-container {
         width: 90%;
     }
 }

 @media (max-width: 576px) {

     .status-header {
         padding: 20px;
     }

     .status-header h1 {
         font-size: 1.8rem;
     }

     .status-content {
         padding: 20px;
     }

     .user-info {
         flex-direction: column;
         text-align: center;
     }
 }