.recipe-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    margin-top: 20px;
}

.recipe-item {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.recipe-item:hover:not(.disabled) {
    background: #3a3a3a;
    border-color: #666;
}

.recipe-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

.recipe-main-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recipe-item-img {
    width: 48px;
    height: 48px;
    background: #000;
    object-fit: contain;
    border: 1px solid #555;
}

.recipe-details {
    flex-grow: 1;
}

.recipe-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
}

.recipe-meta {
    font-size: 0.85em;
    color: #aaa;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.recipe-exp-gain {
    color: #00ff00;
}

.recipe-ingredients {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #333;
}

.ingredient-img {
    width: 32px;
    height: 32px;
    background: #000;
    object-fit: contain;
    border: 1px solid #444;
}

.cooldown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    pointer-events: none;
}

.recipe-item {
    position: relative;
}
