/* Show Page Styles */
.show-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 24px;
}

.show-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.show-card:hover {
    box-shadow: var(--shadow-hover);
}

.show-header {
    background: var(--gradient-primary);
    color: white;
    padding: 48px;
    text-align: center;
}

.show-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.show-subtitle {
    opacity: 0.9;
    font-size: 1.1rem;
    font-weight: 400;
}

.show-body {
    padding: 48px;
}

.show-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.show-section {
    background: var(--surface-color);
    padding: 24px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.show-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

.list-group-item {
    border: none;
    padding: 12px 0;
    background: transparent;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

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

.list-group-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.show-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-warning {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: transparent;
    font-weight: 500;
}

.btn-outline-warning:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-danger {
    background: #dc3545;
    border: none;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    color: white;
    transition: var(--transition);
    font-weight: 500;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Custom styles for sustainability score span */
.sustainability-score {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
}

.sustainability-score.high {
    background-color: #198754;
    color: white;
}

.sustainability-score.medium {
    background-color: #ffc107;
    color: #212529;
}

.sustainability-score.low {
    background-color: #dc3545;
    color: white;
}
