/* עיצוב לגריד של 3 המסרים */
.ca-messages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ca-message-card {
    border: 2px solid #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.ca-message-card:hover, .ca-message-card.selected {
    border-color: #3b82f6;
    background: #eff6ff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ca-message-card h4 {
    margin-top: 0;
    color: #1e293b;
}

/* עיצוב גריד התמונות (ויזואלים מפינטרסט/גוגל) */
.ca-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.ca-gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ca-gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.ca-gallery-grid a:hover img {
    transform: scale(1.05);
}

/* אנימציית טעינה פשוטה */
.ca-loading {
    opacity: 0.5;
    pointer-events: none;
}