.elciye-mesaj-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.elciye-mesaj-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

.elciye-mesaj-item:hover {
    transform: translateY(-5px);
}

.elciye-mesaj-item.unread {
    border-left: 4px solid #0073aa;
}

.elciye-mesaj-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.elciye-mesaj-content {
    padding: 20px;
}

.elciye-mesaj-content h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.elciye-mesaj-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.elciye-mesaj-read-button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.elciye-mesaj-read-button:hover {
    background: #005177;
}

#elciye-mesaj-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.elciye-mesaj-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.elciye-mesaj-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.elciye-mesaj-modal-close:hover {
    color: #333;
}

.elciye-mesaj-modal-header {
    margin-bottom: 10px;
}

.elciye-mesaj-modal-header h2 {
    margin: 0 0 4px 0;
    color: #333;
}

.elciye-mesaj-modal-date {
    color: #666;
    font-size: 0.9em;
}

.elciye-mesaj-modal-image {
    margin-bottom: 20px;
}

.elciye-mesaj-modal-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

.elciye-mesaj-modal-body {
    margin-bottom: 20px;
    line-height: 1.6;
}

.elciye-mesaj-modal-footer {
    text-align: center;
}

.elciye-mesaj-modal-button {
    display: inline-block;
    background: #0073aa;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.elciye-mesaj-modal-button:hover {
    background: #005177;
    color: #ffffff !important;
} 