body {
    font-family: Arial, sans-serif;
    background: #262626; /* Adjust background color for better contrast */
    margin: 0;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 500px;
    width: 100%;
    background: #00ffa0; /* Neo Brutalism background */
    padding: 1rem;
    border-radius: 1rem;
    border: 0.5vmin solid #05060f;
    box-shadow: 0.4rem 0.4rem #05060f;
    overflow: hidden;
    color: black;
    text-align: center;
}

input, button {
    padding: 10px;
    margin: 5px 0; /* Adjust margin to vertical only */
    font-size: 16px;
    width: calc(100% - 24px); /* Ensure input and button take full width minus padding */
    box-sizing: border-box; /* Include padding in width calculation */
}

button {
    background-color: #05060f; /* Button color adjustment */
    color: #00ffa0;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

button:hover {
    background-color: #000000; /* Darker hover color */
}

.result {
    margin-top: 20px;
    font-size: 20px;
}

/* Additional styles for card content */
.pricing-block-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-plan {
    color: #05060f;
    font-size: 1.3rem;
    line-height: 1.25;
    font-weight: 700;
}

.price-value {
    display: flex;
    color: #05060f;
    font-size: 1.8rem;
    line-height: 1.25;
    font-weight: 700;
}

.pricing-note {
    opacity: 0.8;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.check-list-item {
    display: flex;
    align-items: center;
    gap: 4px;
}
