.container-dropdowns {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Accordion Header */
.accordion-item {
    border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: white;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    user-select: none;
}

.accordion-header:hover {
    background-color: #f8f9fa
}

.header-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-title i {
    color: #005cb9;
    width: 20px;
    text-align: center;
}

.chevron {
    transition: transform 0.3s ease;
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
    background-color: #eef7ff;
    color: #005cb9
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
}

.content-inner {
    padding: 20px;
}

/* Entries */
.entry-card {
    display: flex;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: transform 0.2s;
}

.entry-card:last-child {
    margin-bottom: 0;
}

.entry-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.entry-image {
    width: 120px;
    height: auto;
    object-fit: cover;
    cursor: zoom-in;
    flex-shrink: 0;
}

.entry-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.entry-details {
    flex: 1;
}

.entry-title {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #005cb9
}

.entry-desc {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.entry-meta {
    font-size: 0.85rem;
    color: #242b35;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.entry-meta i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.entry-action {
    flex-shrink: 0;
}

.btn {
    background-color: #005cb9;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    background-color: #2980b9;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .entry-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .entry-action {
        width: 100%;
        text-align: right;
        margin-top: 10px;
    }

    .entry-image {
        width: 100px;
    }
}