@charset "UTF-8";

/* 재료 상세 페이지 스타일 */
.material-detail-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.material-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.material-image {
    width: 260px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.material-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
    color: #555;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.material-section {
    text-align: left;
    margin-bottom: 25px;
}

.material-section h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #176f3c;
}

.material-section p {
    background: #f8faf7;
    padding: 15px;
    border-radius: 8px;
    line-height: 1.6;
    color: #444;
    border-left: 4px solid #a2d9b5;
    white-space: pre-line;
}

.back-btn-container {
    margin-top: 30px;
    text-align: right;
}
/* 네이버 쇼핑 버튼 스타일 */
.shop-btn-container {
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.btn-naver-shopping {
    display: inline-block;
    background-color: #00c73c;
    color: white !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-naver-shopping:hover {
    background-color: #00a532;
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.btn-naver-shopping img {
    width: 16px;         /* 아이콘 크기를 글자 높이에 맞춰서 16px로 고정 */
    margin-right: 5px;   /* 아이콘과 글자 사이의 간격 */
    vertical-align: middle; /* 아이콘이 글자 높이 중앙에 오도록 정렬 */
}

/* 트렌드 차트 영역 */
.trend-chart-container {
    width: 100%;
    height: 350px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}