.notice-board {
      background: #29708C;
      color: #fff;
      padding: 15px;
      border-radius: 10px 10px 0 0;
    }
    .notice-item {
      background: #fff;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .notice-date {
      background: #f1f5f9;
      border-right: 3px solid #29708C;
      padding: 8px 12px;
      text-align: center;
      margin-right: 15px;
      border-radius: 6px;
      min-width: 70px;
    }
    .notice-date h5 {
      margin: 0;
      font-size: 18px;
      font-weight: bold;
      color: #29708C;
    }
    .notice-date small {
      display: block;
      font-size: 14px;
      color: #6c757d;
    }
    .notice-text {
      flex: 1;
      font-size: 15px;
      color: #333;
    }
    .view-more {
      text-align: right;
      margin-top: 10px;
    }
    .view-more a {
      font-weight: 600;
      text-decoration: none;
      color: #29708C;
    }
    .custom_text_decoration{
        text-decoration:none;
    }