 .container {
      max-width: 500px;
      width: 100%;
      background: #fff;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      animation: fadeIn 0.6s ease-out;
    }

    .notice-header {
     background: linear-gradient(135deg, #8e2de2, #4a00e0) !important;
     color: #fff;
     padding: 10px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
     overflow: hidden;
     border-radius: 20px 20px 0px 0px;
    }

    .header-content {
      display: flex;
      align-items: center;
      gap: 15px;
      z-index: 2;
    }

    .header-icon {
      font-size: 24px;
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s infinite;
    }

    .header-text h1 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 3px;
    }

    .header-text p {
      font-size: 16px;
    }

    .notification-badge {
      background: #ff6b6b;
      color: white;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 600;
      animation: bounce 2s infinite;
    }

    .notice-list {
      list-style: none;
      margin: 0;
      padding: 0;
      max-height: 500px;
      overflow-y: auto;
    }

    .notice-list::-webkit-scrollbar {
      width: 6px;
    }

    .notice-list::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    .notice-list::-webkit-scrollbar-thumb {
      background: #c5c5c5;
      border-radius: 10px;
    }

    .notice-list li {
      padding: 20px 25px;
      border-bottom: 1px solid #f0f0f0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .notice-list li:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 4px;
      background: #4a6cf7;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .notice-list li:hover {
      background: #f9fbff;
      transform: translateX(5px);
    }

    .notice-list li:hover:before {
      opacity: 1;
    }

    .notice-content {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .notice-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .info-icon {
      background: rgba(74, 108, 247, 0.1);
      color: #4a6cf7;
    }

    .urgent-icon {
      background: rgba(255, 107, 107, 0.1);
      color: #ff6b6b;
      animation: shake 0.5s infinite;
    }

    .event-icon {
      background: rgba(45, 206, 172, 0.1);
      color: #2dceac;
    }

    .notice-details {
      flex: 1;
    }

    .notice-title {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 5px;
      color: #2d3748;
    }

    .notice-preview {
      font-size: 14px;
      color: #718096;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 300px;
    }

    .notice-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 5px;
    }

    .notice-time {
      font-size: 13px;
      color: #a0aec0;
      font-weight: 500;
    }

    .notice-badge {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: 600;
    }

    .badge-urgent {
      background: #fff5f5;
      color: #ff6b6b;
    }

    .badge-info {
      background: #f0f5ff;
      color: #4a6cf7;
    }

    .badge-event {
      background: #f0fff4;
      color: #38a169;
    }

    /* Modal Styles */

.modal{
    justify-content: center !important;
    margin: auto !important;
    display: flex !important;
}    
    
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .modal.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      background: #fff;
      padding: 30px;
      border-radius: 20px;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      transform: translateY(50px);
      opacity: 0;
      transition: all 0.4s ease;
      position: relative;
    }

    .modal.active .modal-content {
      transform: translateY(0);
      opacity: 1;
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #edf2f7;
    }

    .modal-title {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 600;
      color: #2d3748;
    }

    .modal-title i {
      font-size: 22px;
    }

    .modal-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .close {
      cursor: pointer;
      font-size: 22px;
      color: #a0aec0;
      transition: 0.3s;
    }

    .close:hover {
      color: #4a6cf7;
    }

    .modal-body {
      margin-bottom: 25px;
    }

    .modal-field {
      margin-bottom: 15px;
    }

    .modal-field label {
      display: block;
      font-size: 13px;
      color: #718096;
      margin-bottom: 5px;
      font-weight: 500;
    }

    .modal-field p {
      font-size: 15px;
      color: #2d3748;
      font-weight: 500;
    }

    .modal-footer {
      display: flex;
      justify-content: flex-end;
    }



    .btn {
      padding: 10px 20px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary {
      background: #4a6cf7;
      color: white;
    }

    .btn-primary:hover {
      background: #3a5be0;
      transform: translateY(-2px);
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
      70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    @keyframes shake {
      0%, 100% { transform: rotate(0); }
      25% { transform: rotate(-5deg); }
      75% { transform: rotate(5deg); }
    }

    .notice-list li {
      animation: slideIn 0.5s ease-out;
      animation-fill-mode: both;
    }

    .notice-list li:nth-child(1) { animation-delay: 0.1s; }
    .notice-list li:nth-child(2) { animation-delay: 0.2s; }
    .notice-list li:nth-child(3) { animation-delay: 0.3s; }

    @keyframes slideIn {
      from { opacity: 0; transform: translateX(-20px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Decorative elements */
    .header-shape {
      position: absolute;
      right: -20px;
      top: -20px;
      width: 150px;
      height: 150px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
    }

    .header-shape-2 {
      position: absolute;
      right: 30px;
      top: -40px;
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 30px;
      transform: rotate(45deg);
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      .notice-header {
        padding: 15px 20px;
      }
      
      .header-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }
      
      .header-text h1 {
        font-size: 13px;
      }
      
      .notice-list li {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
      
      .notice-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
      }
      
      .modal-content {
        padding: 20px;
      }
      
      .header-text p {
         font-size: 15px !important;
    }
    
    .admin_notice_section::-webkit-scrollbar {
    display: none;  /* Chrome, Safari ke liye scrollbar hide */
}