.ceca-asamblea-docs {
    font-family: var(--ceca-font-family, sans-serif);
    width: 100%;
}

.ceca-asamblea-docs__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ceca-asamblea-docs__item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--ceca-border-color, #e0e0e0);
    gap: 20px;
    transition: background-color 0.3s ease;
}

.ceca-asamblea-docs__item:hover {
    background-color: rgba(0,0,0,0.02);
}

.ceca-asamblea-docs__icon {
    flex-shrink: 0;
    color: #DB2929; /* PDF red, could be a var */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceca-asamblea-docs__title-wrap {
    flex-grow: 1;
}

.ceca-asamblea-docs__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--ceca-title-color, #333);
}

.ceca-asamblea-docs__action {
    flex-shrink: 0;
}

.ceca-asamblea-docs__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ceca-primary, #0056b3);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.ceca-asamblea-docs__link:hover,
.ceca-asamblea-docs__link:focus {
    color: var(--ceca-primary-hover, #003d82);
    text-decoration: underline;
}

/* Pagination */
.ceca-asamblea-docs__pagination {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.ceca-asamblea-docs__btn {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #ccd4de;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
    padding: 0;
    color: transparent;
    font-size: 0;
    line-height: 0;
}

.ceca-asamblea-docs__btn::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 10H16' stroke='%23454B52' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M10 4L16 10L10 16' stroke='%23454B52' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ceca-asamblea-docs__btn--prev::before {
    transform: rotate(180deg);
}

.ceca-asamblea-docs__btn:hover:not(:disabled) {
    background: var(--ceca-white, #fff);
    border-color: #c2ccd8;
}

.ceca-asamblea-docs__btn:focus-visible {
    outline: 2px solid rgba(3, 78, 103, 0.35);
    outline-offset: 2px;
}

.ceca-asamblea-docs__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.ceca-asamblea-docs.is-loading .ceca-asamblea-docs__list {
    opacity: 0.5;
    pointer-events: none;
}

.ceca-asamblea-docs__empty {
    padding: 20px 0;
    text-align: center;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .ceca-asamblea-docs__title {
        font-size: 16px;
    }
    .ceca-asamblea-docs__link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .ceca-asamblea-docs__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }
    .ceca-asamblea-docs__action {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
}