.event-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    color: white;
	padding-bottom: 20px; 
}

.event-detail-item {
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px; 
    background-color: rgba(0, 0, 0, 0.2); 
    border-radius: 8px;
	  border: solid 1px #fff;
}

.event-detail-label {
    display: flex;
    align-items: center;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.event-detail-label .dashicons {
    font-size: 24px;
    margin-right: 10px;
    color: white;
}

.event-detail-value {
    font-size: 1.3em;
    font-weight: bold;
}

.tmpro-tickets-counter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: fit-content;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.counter-display {
    padding: 5px 30px;
    line-height: 1;
}

#tmpro-selected-count {
    font-weight: 900;
    font-size: 3.5em;
}

.counter-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 0px;
    border-top: 2px solid #fff;
}

.tmpro-button-submit {
    width: 100%;
    margin-top: 40px;
}

.tmpro-ticket-grid-container {
    max-height: 650px;
    overflow-y: auto;
    background-color: #f2f4f8;
    border-radius: 8px;
    padding: 20px;
    -ms-overflow-style: none; 
    scrollbar-width: none;
}

.tmpro-ticket-grid-container::-webkit-scrollbar {
    display: none;
}

.tmpro-ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 15px;
    justify-content: center;
}

.tmpro-ticket-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    border: solid 1px #c2c2c2;
    border-radius: 8px;
    transition: all 0.2s ease;
    user-select: none;
    font-size: 1.3em;
    font-weight: 700;
}

.tmpro-ticket-button input[type="checkbox"] {
    display: none;
}

.tmpro-ticket-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
}

.tmpro-ticket-button input[type="checkbox"]:checked + span {
    color: #0073aa;
}

.tmpro-ticket-button.is-selected {
    background-color: #e6f2f8; 
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
}



/* Flexbox container for the individual social icons */
.tmpro-social-icons-wrapper {
    display: flex;
    justify-content: left; /* Aligns icons to the left */
    gap: 15px; /* Space between icons */
}

/* Base style for the circular social link buttons */
.tmpro-social-link-circle {
    display: inline-flex; /* Use flexbox to center the icon */
    align-items: center; /* Vertically center icon */
    justify-content: center; /* Horizontally center icon */
    font-size: 22px; /* Default icon size */
}

/* Hover effect for all social circles */
.tmpro-social-link-circle:hover {
    transform: translateY(-2px); /* Slight lift effect */
}



@media (max-width: 768px) {
    .event-details-grid {
        /* Cambia a una sola columna */
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    
}