/* Common styles */
body {
    background-color: #f8f9fa;
}

/* Header styles */
header {
    padding: 2rem 0;
}

/* Card styles */
.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

/* Loading spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Breadcrumb styles */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
}

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

/* Image styles */
.img-fluid {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Recipe meta information */
.recipe-meta {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.25rem;
}

/* Utility classes */
.border-dashed {
    border-style: dashed !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .img-fluid {
        max-height: 300px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#recipe-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none;
    margin-bottom: 20px;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.list-group-item {
    border-left: none;
    border-right: none;
    padding: 1rem;
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item:last-child {
    border-bottom: none;
}

#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.alert {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    #recipe-image {
        max-height: 300px;
    }
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .lead {
        font-size: 1.35rem;
        padding: 0 2rem;
    }
}

.header-section {
    background-color: #f8f9fa;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.header-section h1 {
    margin-bottom: 1.5rem;
    color: #343a40;
    font-weight: 600;
} 