button {
    margin: 50px;
}

.row {
    padding: 10px;
}

textarea#notes {
    background-color: transparent;
    color: white;
}

#recipe-search {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

#recipe-search:focus {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

#recipe-search::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.recipe-image {
    object-fit: contain;
    border-radius: 8px;
}

.recipe-card {
    background-color: #e0e0e0;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.recipe-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.recipe-card-placeholder {
    width: 100%;
    height: 180px;
    background-color: #c0c0c0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
}

.recipe-card .card-body {
    padding: 0.75rem;
}

.recipe-card .card-title {
    color: #222;
    font-size: 0.95rem;
    font-weight: 500;
}

.recipe-text {
    white-space: pre-wrap;
    color: white;
}

.index-action-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

.index-action-btn:hover,
.index-action-btn:focus {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.index-action-btn.active {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.content-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
}