
.notice-board-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 4px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-top: 28px;
    margin-left: 10px;
}

.notice {
  outline: 1px dashed red;
}



.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  
}

.section-title11 {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    text-align: center;
    padding: 3px 0;
    margin: 0 0 20px 0;
    border-radius: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 250px;
    letter-spacing: 1px;
    font-size: 1.2rem;
    margin-top: 15px;
}


.marquee-container {
    width: 60%;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.notice-board {
    display: flex;
    flex-direction: row;
    overflow-x: visible;
    width: max-content;
}

.notice {
    background-color: white;
    padding: 6px;
    margin-right: 20px;
    border-radius: 7px;
    transition: transform 0.3s;
    border-left: none;
    box-shadow: none;
    min-width: 800px;
    position: relative;
}



/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    position: relative;
}




.notice-form {
    padding: 10px 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.submit-btn {
    background: linear-gradient(to right, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(to right, #2980b9, #3498db);
}

.empty-state {
    text-align: center;
    color: #7f8c8d;
    padding: 20px;
}

/* Fixed styles with completely separate columns */
.notice-content {
    display: grid;
    grid-template-columns: 200px 250px 1fr 30px;
    grid-column-gap: 30px;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: white;
    border-radius: 7px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    position: relative;
}

.notice-date {
    font-size: 0.9rem;
    color: #081558;
    grid-column: 1;
    padding-right: 15px;
    border-right: 2px solid #eee;
    justify-self: start;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-title {
    font-size: 1.1rem;
    color: rgb(13, 25, 41);
    grid-column: 2;
    margin: 0;
    word-break: break-word;
    font-weight: bold;
    text-align: center;
    padding: 0 15px;
    border-right: 2px solid #eee;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-text {
    grid-column: 3;
    margin: 0;
    font-size: 0.9rem;
    word-break: break-word;
    padding-right: 25px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
}
.breadcrumba1 {
  background: white;
  padding: 10px 20px;
  border-radius: 14px;
  margin: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.breadcrumb1 {
color: blue;
}
.notice.expiring-soon {
  border-left: 5px solid #2226ff;
  background-color: #e0faff;
}



          .action-btn {
            color: #007bff;
            border: 1px solid #007bff;
            border-radius: 14px;
            padding: 6px 14px;
            font-size: 13px;
            background-color: white;
            margin: 6px 6px 0 0;
            cursor: pointer;
            transition: background 0.2s;
          }

          .action-btn:hover {
            background-color: #e8f0ff;
          }

          .address-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
          }

          .contact-title {
            margin: 0;
          }


          .address-container {
  border: 1px solid #ddd;
  padding: 16px 20px;                  /* more internal spacing */
  border-radius: 14px;
  margin-top: 10px;
  margin-bottom: 20px;                /* spacing below block */
  max-width: 400px;
  font-family: 'Segoe UI', sans-serif;
   background-color: #f9f9f9;
  transition: background 0.2s ease;          /* white card look */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);  /* subtle shadow */
}

          .address-container div {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.address-container strong {
  font-weight: 500;
  color: #111827;
}

.address-field {
  color: #2563eb;
  font-weight: 500;
  margin-left: 4px;
  word-break: break-word;
}
          .address-field:hover {
            text-decoration: underline;
          }
  



          .copy-icon {
            font-size: 18px;
            color: #007bff;
            cursor: pointer;
            margin-top: 10px;
          }

          .copy-icon:hover {
            color: #0056b3;
          }

        
     

  .opening-hours {
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #dcdcdc;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family:  sans-serif;
  transition: all 0.3s ease;
}

.opening-title {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  border-bottom: 2px solid #3f51b5;
  padding-bottom: 5px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  background-color: #f9f9f9;
  transition: background 0.2s ease;
}

.hours-row:hover {
  background-color: #f1f1f1;
}

.hours-row .day {
  width: 70px;
  font-weight: 500;
    color:  #111827;
}

.hours-row .time {
  font-family: sans-serif;
  color: #2563eb;
}






 /* Notification Styles */
            .notification {
              position: fixed;
              top: 20px;
              right: 20px;
              padding: 15px 20px;
              border-radius: 4px;
              color: #fff;
              font-weight: bold;
              z-index: 1000;
            }

            .notification.success {
              background-color: #28a745;
            }

            .notification.error {
              background-color: #dc3545;
            }
        