.uec-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.uec-row {
    width: 100%;
    margin: 0;
}

.uec-col {
    width: 100%;
    padding: 0;
}

.uec-event-detail-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

@media (min-width: 768px) {
    .uec-event-detail-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.uec-event-info {
    flex: 1;
    width: 100%;
}

@media (min-width: 768px) {
    .uec-event-info {
        margin-right: 20px;
        width: 60%;
    }
}

.uec-event-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .uec-event-image {
        width: 35%;
    }
}

.uec-event-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.uec-event-title {
    font-size: 1.5rem;
    line-height: normal;
    margin-bottom: 15px;
    color: #333;
}

@media (min-width: 768px) {
    .uec-event-title {
        font-size: 2rem;
        line-height: normal;
    }
}

.uec-event-at-a-glance {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.uec-event-at-a-glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.uec-event-glance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.1);
}

.uec-event-glance-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--primary-color-light, #e6f2ff);
    color: var(--primary-color, #007bff);
}

.uec-event-glance-item-icon svg {
    width: 24px;
    height: 24px;
}

.uec-event-glance-item-content {
    flex-grow: 1;
}

.uec-event-glance-item-content-title {
    font-weight: 600;
    color: #0e0e0e;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.uec-event-glance-item-content-detail {
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
}

.uec-social-share-container {
    margin-top: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.uec-social-share-label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.uec-social-share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.uec-social-share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
    background-color: var(--social-icon-bg, #333);
}

.uec-social-share-buttons a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.uec-social-share-buttons .facebook {
    --social-icon-bg: #3b5998;
}

.uec-social-share-buttons .twitter {
    --social-icon-bg: #1da1f2;
}

.uec-social-share-buttons .linkedin {
    --social-icon-bg: #0077b5;
}

.uec-social-share-buttons .whatsapp {
    --social-icon-bg: #25d366;
}

.uec-social-share-buttons a i {
    font-size: 18px;
}

.uec-event-action {
    margin-top: 20px;
}

.uec-event-action button {
    width: 100%;
    max-width: 300px;
    background-color: var(--primary-color, #007bff);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.uec-event-action button:hover {
    background-color: var(--primary-darker-color, #0056b3);
}

.uec-event-not-found {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.uec-event-not-found h2 {
    font-size: 1.5rem;
    color: #333;
}

.uec-event-not-found p {
    font-size: 1rem;
    color: #555;
}