body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #6200ea;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #3700b3;
}

.card {
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #fff;
}

.thumbnail {
    clip-path: inset(13% 0px round 12px);
    height: 200px;
}

.details {
    flex-grow: 1;
    text-align: left;
}

.details h2 {
    margin-top: 0;
}

.details p {
    margin: 0;
}

.material-select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 10px;
}

.material-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.material-button:hover {
    background-color: #45a049;
}

.option-item {
    display: inline-block;
    margin-right: 20px;
}
.hidden {
    display: none;
}

.checkbox-label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.button-container {
    margin-top: 20px;
}

.button-item {
    display: inline-block;
    vertical-align: middle;
}

/* Custom Material Design Checkbox */
.checkbox-material {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 18px;
    padding-bottom: 7px;
    height: 18px;
    cursor: pointer;
}

.checkbox-material input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-material span {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #757575;
    border-radius: 3px;
    background-color: transparent;
}

.checkbox-material input[type="checkbox"]:checked + span::after {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #1976D2;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

