/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 20px; 
    line-height: 1.6;
    background-color: #f9f9f9;
}


header {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin: 0 20px; 
}


/* Breadcrumb Styling */
.breadcrumb {
    list-style: none;
    display: flex;
    gap: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.breadcrumb li a {
    text-decoration: none;
    color: #007BFF;
}

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

/* Set Overview Styling */
.set-overview {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.set-image {
    max-width: 40%;
    border-radius: 8px;
}

/* Opinions Section */
.opinions p {
    padding: 10px 0;
    line-height: 1.8;
    text-align: justify;
}

/* User Review */
.user-review {
    background-color: #f4f4f4;
    padding: 15px;
    border-left: 4px solid #007BFF;
    margin: 40px 0;
    border-radius: 5px;
}

/* Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}