.cst-container .container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.cst-container h2 {
    color: #5C6BC0;
    margin-bottom: 20px;
}

.cst-container input,
.cst-container .cst-select {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.cst-container .cst-select {
    background: white;
    cursor: pointer;
}

.cst-container button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.cst-container .btn-primary {
    background: #9CACE6;
    color: white;
}

.cst-container .btn-primary:hover {
    background: #5C6BC0;
}

.cst-container .btn-reset {
    background: #F6A5C0;
    color: white;
    margin-top: 10px;
}

.cst-container .btn-reset:hover {
    background: #D6728E;
}

.cst-container .result {
    margin-top: 20px;
    padding: 15px;
    background: #E8F8FF;
    border-radius: 5px;
    display: none;
}

.cst-container .bracelet-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.cst-container .bracelet-list li {
    background: white;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.cst-container .bracelet-list li .buy-btn {
    background: #F6A5C0;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.cst-container .bracelet-list li .buy-btn:hover {
    background: #D6728E;
}