body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: white;
    margin: 0;
    padding: 20px;
    color: #333;
    line-height: 1.4;
}

body, h1, h2, h3, p, label, select, button, .tab-button, .capacity-button {
    font-family: 'Nunito', sans-serif;
}


.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 10px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    margin-bottom: -10px;
}

h1, h2, h3 {
    margin: 5px 0;
    font-weight: 600;
}

h1 {
    font-size: 28px;
    color: #b07bef;
    font-weight: 700; /* Increase the font weight to make it bolder */
}

.header p {
    color: #666;
    margin: 3px 0;
    font-size: 14px;
    font-weight: 400;
}

.app-store-badge {
    width: 135px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.select-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    font-size: 14px;
}

select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-color: #f0f0f0;
}

.tab-group {
    margin-bottom: 15px;
}

.tab-buttons {
    display: flex;
    gap: 8px;
    margin-top: 3px;
}

.tab-button {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f0f0f0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}



.tab-button.active {
    background-color: #b07bef;
    color: white;
    border-color: #b07bef;
}

.availability-section h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 8px;
}

.color-column {
    text-align: center;
    min-width: 60px;
}

.color-name {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.capacity-button {
    display: block;
    width: 100%;
    padding: 6px 4px;
    margin-bottom: 6px;
    border: none;
    border-radius: 8px;
    background-color: #b07bef;
    color: white;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.capacity-button.in-stock {
    background-color: #b07bef;
    cursor: pointer;
}

.capacity-button.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.footer-note {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 300;
}

a, a:hover, a:visited, a:active {
    text-decoration: none;
}

.availability-grid a {
    text-decoration: none;
}

.footer {
    margin-top: 20px;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
    font-weight: 300;
}

.footer a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}
