/* Container */
.event-container {
    display: flex;
    gap: 5px;
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Left Section */
  .image-section {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .event-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }
  .modal-top-bar{
    height: 30px;
    background-color: #1c2541;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
  }
  .model-header-text{
    color: white;
    padding-left: 10px;
    font-size: 16px;
  }
  .arrow-custom-btn
  {
    color: #e3e3e3;
    padding: 5px;
  }

  .modal-body{
    padding: 0 10px;
  }
  /* Right Section */
  .right-cross-btn{
    float: right;
    border: 1px solid red;
    background-color: red;
    color: white;
    height: 30px;
    width: 30px;
    border-radius: 5px;
  }
  .details-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .details-list {
    list-style: none;
    padding-left: 10px;
    margin: 0;
    color: #333;
    font-size: 11px;
  }
  
  .details-list li {
    margin-bottom: 8px;
  }
  
  .highlight {
    color: #4caf50;
    font-weight: bold;
  }
  
  /* Button */
  .view-results-button {
    display: inline-block;
    margin-top: auto;
    padding: 3px 0;
    text-align: center;
    background-color: #007bff;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .view-results-button:hover {
    background-color: #0056b3;
  }
  .b1{
    border: 1px solid #d3d3d3;
  }
  .title-bold{
    font-size: 0.9rem;
    font-weight: bold;
    color: #636363;
  }