/* Apply black background to all buttons */
.t-btn {
    background-color: #000000 !important; /* Black */
    color: #ffffff !important; /* White text */
    border: none !important;
    border-radius: 5px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    transition: all 0.3s ease-in-out !important;
}

/* Hover effect (optional) */
.t-btn:hover {
    background-color: #333333 !important; /* Dark gray on hover */
}
