.runes-container {
    max-width: 100%;
    margin: 0 0 30px;
}

.runes-heading {
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 22px;
}

.runes-empty {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
    border-radius: 4px;
    color: #777;
}

.runes-list-wrapper {
    border: 1px solid #eee;
    border-radius: 4px;
}

.rune-row {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.rune-row:last-child {
    border-bottom: none;
}

.rune-row:hover {
    background: #fcfcfc;
}

.rune-col-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 20px;
    background: #f4f4f4;
    border-radius: 4px;
    overflow: hidden;
}

.rune-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rune-no-image {
    display: block;
    width: 100%;
    height: 100%;
    background: #eee;
}

.rune-col-info {
    flex-grow: 1;
    padding-right: 15px;
}

.rune-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.rune-date {
    font-size: 13px;
    color: #888;
}

.rune-col-action {
    flex-shrink: 0;
}

.rune-btn-view {
    cursor: pointer;
    white-space: nowrap;
}

.rune-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rune-modal-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
}

.rune-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    line-height: 1;
    border: none;
    background: none;
    cursor: pointer;
    color: #aaa;
    padding: 0;
    z-index: 10;
}

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

.rune-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.rune-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.rune-modal-body {
    padding: 25px;
    overflow-y: auto;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

.rune-modal-body p {
    margin: 0 0 1em;
}

.rune-modal-body p:last-child {
    margin-bottom: 0;
}

.rune-modal-body ol,
.rune-modal-body ul {
    margin: 0 0 1em 20px;
}

.rune-modal-body li {
    margin-bottom: 0.3em;
}

@media (max-width: 600px) {
    .rune-row {
        flex-wrap: wrap;
    }

    .rune-col-image {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .rune-col-info {
        width: calc(100% - 70px);
        padding-right: 0;
        margin-bottom: 12px;
    }

    .rune-col-action {
        width: 100%;
        text-align: right;
    }

    .rune-btn-view {
        width: 100%;
    }
}