.pii-tokenize-container {
    position: relative;
}

.pii-tokenize-button {
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #1F2937; /* Dark grayish blue */
    color: #E5E7EB; /* Light gray for text */
    border: 2px solid #3B82F6; /* Accent border color */
    border-radius: 25px; /* Rounded corners for a smoother look */
    font-size: 16px;
    font-weight: 600; /* Slightly bold for better visibility */
    transition: all 0.3s ease; /* Smooth hover transition */
    cursor: pointer;
}

.pii-tokenize-button:hover {
    background-color: #3B82F6; /* Accent color on hover */
    border-color: #2563EB; /* Lighter accent on hover */
    color: #1F2937; /* Dark text color on hover for contrast */
}
