/* General Layout */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Heading */
h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Dropdown Containers */
.dropdown-container {
    margin-bottom: 15px;
}

/* Label */
label {
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}

/* Select */
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Line Areas Display */
#line-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Line Area Individual Item */
.line-area {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.line-area h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.line-area p {
    font-size: 1.1em;
    color: #555;
}
.hidden {
    display: none;
  }
  
/* Buy Reel Button (styled to look like Etsy and Calculator buttons) */
.buy-reel-button {
    background-color: #3498db; /* Blue color to match Etsy and Calculator buttons */
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

/* Hover effect for Buy Reel Button */
.buy-reel-button:hover {
    background-color: #2980b9; /* Darker blue when hovered */
}

/* Center the button on the page */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

