.sticker-name {
    text-align: center;       /* Center the text */
    font-size: 1.2em;         /* Adjust font size to make it similar to the set title */
    font-weight: bold;        /* Make the text bold */
    color: #002d72;           /* Set the color to match the "Monopoly Go set1" color */
    margin-top: 8px;          /* Add some space between the image and the text */
    font-family: 'Nunito Sans', sans-serif; /* Use a simple, clean font */
}

.modal-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group input:focus {
    border-color: #4770db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(71, 112, 219, 0.2);
}

.form-group .hint {
    color: #666;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.4;
}

.modal-content button {
    all: unset;
    color: #fff;
    background: #4770db;
    border-radius: 30px;
    font-size: 16px;
    padding: 8px 40px;
    margin: 20px auto 0;
    cursor: pointer;
    display: block;
    text-align: center;
    transition: background-color 0.2s;
}

.modal-content button:hover {
    background: #3558b6;
}

.required {
    color: red;
    margin-left: 2px;
}

.input-placeholder {
    color: #999;
    font-size: 13px;
}