.stickperso-container {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stickperso-container h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.25em;
    font-weight: 600;
    color: #333;
}

.stickperso-preview-area {
    margin-bottom: 20px;
    text-align: center;
}

.stickperso-preview {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border: 2px dashed #b5b5b5;
    border-radius: 50%; /* Make it look like a round sticker */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stickperso-preview:hover {
    border-color: #888;
}

.stickperso-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stickperso-placeholder-text {
    color: #888;
    font-size: 0.95em;
    font-style: italic;
    padding: 20px;
    text-align: center;
}

.stickperso-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stickperso-upload-area label {
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
    color: #555;
}

.stickperso-upload-area input[type="file"] {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}
