.bg-green-btn { 
    background-color: rgb(32, 126, 6) !important;
}

.bg-blue-500{
    background-color : #1f1fc7 !important;

} 

.bg-yellow-500{
    background-color : rgb(224, 202, 100) !important;
}

.bg-red-500{
    background-color: rgb(228, 54, 54) !important;
}
.bg-red-200{
    background-color: rgba(238, 157, 157, 0.904) !important;
    
}

.bg-green-200 {
    background-color: rgba(109, 148, 103, 0.904) !important;

}


/* Table Styling */
.prose table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
}

.prose th,
.prose td {
    border: 1px solid #e5e7eb;
    padding: 5px;
    text-align: left;
}

.prose thead {
    background-color: #f3f4f6;
}

/* Make tables scrollable on mobile */
.prose .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.prose .table-wrapper table {
    min-width: 600px;
}