.result-header {
    background-color: #7b7483;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
}
.result-header h1{
    margin-bottom: 0;
    color: white;
}
.color-white
{
    color: white !important;
}

.result-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    margin: 10px 7px;
    max-width: 600px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.result-card h3 {
    margin-bottom: 10px;
    font-weight: bold;
}
.result-row {
    margin-bottom: 10px;
}
.result-row span {
    font-weight: bold;
}

/* Styles for items in the result row */
.result-item {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between label and value */
    min-width: 200px; /* Ensures items take some space */
}

.result-item span {
    font-weight: bold;
    color: #555;
}

.result-value {
    color: #333;
    font-size: 16px;
    font-family: math;
    font-weight: bold;
}

/* Optional: Add hover effect for visual feedback */
.result-item:hover {
    background-color: #f0f0f0;
    border-radius: 4px;
}

/* Styles for info-item */
.info-item {
    display: flex;
    align-items: center; /* Vertical alignment for label and value */
    gap: 8px; /* Space between the label and value */
    min-width: 150px; /* Ensures proper spacing for each item */
}

.info-item span {
    font-weight: bold;
    color: #555;
}

.info-value {
    color: #333;
    font-size: 15px;
    font-family: math;
    font-weight: bold;
}
.bottom-button-container{
    text-align: center;
}
.caption-01{
    margin-right: 10px;
}

/* Optional hover effect for info-item */
.info-item:hover {
    background-color: #f7f7f7;
    border-radius: 4px;
    padding: 2px;
}


.contant-text-parent {
    display: flex;
    justify-content: start;
}
.content-text {
    font-weight: bold;
    margin-right: 10px;
}
.comment-section {
    margin-top: 30px;
}
.comment {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.comment-box {
    resize: none;
}


/* Madel show */
.profile-mod-container {
    justify-content: center;
    align-items: center;
    height: 100%;
}
.evnet-title-banner{
    width: 100%;
    text-align: center;
    background-color: #7b7483;
    color: white;
    margin-bottom: 10px;
}
.evnet-title-banner h4{
    font-size: 15px;
    color: white;
    padding-top: 8px;
}
.profile-mod-details {
    text-align: center;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

img {
    margin: 0 auto;
}


/* Style for the loading container */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height of the viewport */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Optional: a translucent background */
    z-index: 9999; /* Ensure it's on top of other content */
  }
  
  /* Style for the loading spinner */
  .loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3); /* White with transparency */
    border-top: 4px solid #3498db; /* Blue color for the spinner */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  /* Spinner animation */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .event-result-image-container
  {
    background-color: black;
    color: white;
    text-align: center;
    font-size: 2rem;
    height: 280px;
    overflow: hidden;
  }

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.image-title {
  margin-top: 8px; /* Space between the image and text */
  font-size: 1.2rem; /* Adjust as needed */
  text-align: center; /* Ensure the text is centered */
}