/* style.css */
 
/* Custom Siemens Teal Color */
.bg-siemens-teal {
    background-color: #009999;
}
 
.hover\:bg-siemens-teal-dark:hover {
    background-color: #007a7a; /* A slightly darker shade for hover effect */
}
 
.text-siemens-teal {
    color: #009999;
}
 
.focus\:border-siemens-teal:focus {
    border-color: #009999;
}
 
.focus\:ring-siemens-teal:focus {
    --tw-ring-color: #009999;
}
 
/* Custom styling for disabled button */
#convertPdfBtn:disabled {
    background-color: #999999;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
}