/* Sake Database Plugin Styles */
.sake-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.sake-item {
    background: #f9f7f4;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #8b4513;
    transition: transform 0.3s ease;
}

.sake-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sake-item h4 {
    margin: 0 0 10px 0;
    color: #8b4513;
}

.sake-item h4 a {
    color: inherit;
    text-decoration: none;
}

.sake-item h4 a:hover {
    text-decoration: underline;
}

.sake-rating {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.sake-search-widget {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.sake-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sake-search-form input,
.sake-search-form select {
    padding: 10px;
    border: 2px solid #e0d5c7;
    border-radius: 5px;
    flex: 1;
    min-width: 200px;
}

.sake-search-form button {
    background: #8b4513;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sake-search-form button:hover {
    background: #a0522d;
}

/* Admin Styles */
.sake-dashboard {
    margin-top: 20px;
}

.sake-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-box {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #8b4513;
    margin: 0;
}

.sake-quick-actions {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccd0d4;
    border-radius: 5px;
}

.sake-quick-actions .button {
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sake-search-form {
        flex-direction: column;
    }
    
    .sake-search-form input,
    .sake-search-form select {
        min-width: auto;
    }
    
    .sake-stats {
        flex-direction: column;
    }
}