.logo-img {
    display: none;
}


.prc-event-sheet-container {
    font-family: 'Raleway', sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Default responsive grid */
    grid-template-columns: 38% 60%; /* Specific layout */
    gap: 2px;
   /* width: 99%;
    max-width: 99%;*/
    margin: 20px auto;
    padding: 5px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
}

.prc-event-sheet-item {
    font-size: 24px;
    margin: 0;
    padding: 0; /* Explicitly define padding */
}


@media (max-width: 768px) {
    .prc-event-sheet-container {
        /*  grid-template-columns: 1fr; /* Stack the items in a single column on small screens */
      /*  max-width: 99%;*/
        margin: 4px 2px;
        padding: 5px;
        margin-bottom: 10px;
   /*     width: 99%; */
        text-align: center;
        border-radius: 5px; /* Optional: rounded corners */
        background: #fff; /* Ensure the background is visible */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }

    .prc-event-sheet-item {
        font-size: 20px; /* Further reduce font size on smaller screens */
        padding: 5px; /* Reduce padding */
    }

    .prcev-form .outlineme {
        max-width: 99%;
        width: 99%; /* Adjust width as needed */
    }
}


.prc-event-sheet-item-container {
    display: flex;
    align-items: flex-start; /* Vertically aligns the label and value */
    gap: 2px;
    padding: 0;
}



.prc-event-sheet-item.label {
    font-weight: bold;
    text-align: left; /* Ensures the label text is left-aligned */
    white-space: normal; /* Ensures label wraps if it's too long */
}

.prc-event-sheet-item.value {
    text-align: left; /* Ensures the value text is left-aligned */
    padding-left: 20px; /* Indentation for the value */
    white-space: normal; /* Ensures value wraps if it's too long */
    border-bottom: 1px solid #ddd;
}

.eventsheet-item {
    grid-column: span 2; /* Makes the PROGRAM label span both columns */
    text-align: left;
}

.eventsheet-text {
    grid-column: span 2; /* Makes the PROGRAM text span both columns */
    padding-left: 50px; /* Indentation for PROGRAM text */
    /* font-style: italic; /* Optional: To make the PROGRAM text stand out */
    text-align: left; /* Ensures PROGRAM text is left-aligned */
    word-wrap: normal;
    white-space: normal;
}

.eventsheet-title {
    grid-column: span 2;
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-weight: 700;
    border: none;
    font-size: 1.2em;
    word-wrap: normal;
    white-space: normal;
}

@media (max-width: 768px) {
    .eventsheet-text {
        padding-left: 0;
        font-size: 16px;
    }

    .prc-event-sheet-item {
        font-size: 16px;
    }
}

/* Styling for the labels (headings) */
.prc-event-sheet-item.label strong {
    font-weight: 400; /* Lighter weight for the headings */
    color: #666; /* Lighter color for headings */
    margin-right: 8px; /* Space between heading and value */
}
/* Styling for the labels (headings) */
.prc-event-sheet-item.value strong {
    font-weight: 500; /* Lighter weight for the headings */
    color: black; /* Lighter color for headings */
    margin-right: 8px; /* Space between heading and value */
}
