.container {
    max-width: 56rem;
    margin: 0 auto;
}

h1 {
    margin-bottom: 2rem;
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
}

.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-planeacion {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.card-header:hover {
    background-color: #f9fafb;
}

.card-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.chevron-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chevron-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4b5563;
    transition: transform 0.2s;
}

.card-planeacion-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    line-height: 1;
}

.action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.action-btn:hover {
    background-color: #f3f4f6;
}

.action-icon {
    width: 1rem;
    height: 1rem;
}

.icon-play {
    color: #16a34a;
}

.icon-camera {
    color: #2563eb;
}

.icon-warning {
    color: #dc2626;
}

.card-content {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    display: none;
}

.card-content.expanded {
    display: block;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
    }
}

.gestor-status-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.gestor-section {
    background-color: #6c757d36;
    border-radius: 5px;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .gestor-section {
        align-items: center;
        width: 12rem;
    }
}

.gestor-avatars-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .gestor-avatars-container {
        justify-content: flex-start;
    }
}

.gestor-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    background-color: #e5e7eb;
    border: 2px solid white;
}

.gestor-avatar:not(:first-child) {
    margin-left: -0.75rem;
}

.gestor-names {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

@media (min-width: 768px) {
    .gestor-names {
        text-align: center;
    }
}

.gestor-name {
    color: #111827;
}

.event-data-section {
    flex: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.info-value {
    color: #111827;
}

.status-badge {
    width: 100%;
    padding: 0.5rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    text-align: center;
}

.status-executed {
    background-color: #dcfce7;
    color: #166534;
}

.status-planned {
    background-color: #fed7aa;
    color: #9a3412;
}

.status-not-executed {
    background-color: #fecaca;
    color: #991b1b;
}