/* Pokemon Sleep Recipe Calculator Plugin Styles */
.psrc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.psrc-calculator-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: white;
    margin-bottom: 30px;
}

.psrc-calculator-wrapper h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.psrc-calculator-form {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.psrc-form-group {
    margin-bottom: 20px;
}

.psrc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1.1em;
}

.psrc-form-group select,
.psrc-form-group input[type="range"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.psrc-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.ingredient-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.ingredient-item:hover {
    background: rgba(255,255,255,0.2);
}

.ingredient-item input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.psrc-calculate-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.psrc-calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.psrc-results-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.psrc-results-container h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8em;
}

/* Blog Styles */
.psrc-blog-container {
    margin-top: 40px;
}

.psrc-blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.psrc-blog-header h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.psrc-blog-header p {
    font-size: 1.2em;
    color: #666;
}

.psrc-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.psrc-blog-post {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.psrc-blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.psrc-post-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
}

.psrc-post-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: bold;
}

.psrc-post-meta {
    font-size: 0.9em;
    opacity: 0.9;
}

.psrc-post-content {
    padding: 20px;
}

.psrc-read-more {
    display: inline-block;
    margin-top: 15px;
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.psrc-read-more:hover {
    color: #764ba2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .psrc-container {
        padding: 10px;
    }
    
    .psrc-calculator-wrapper {
        padding: 20px;
    }
    
    .psrc-calculator-wrapper h2 {
        font-size: 2em;
    }
    
    .psrc-ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .psrc-blog-grid {
        grid-template-columns: 1fr;
    }
}