
.compatibility-container {
font-family: 'SolaimanLipi', Arial, sans-serif;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-left: 195px;
margin-right: 195px;
margin-top: 100px;
margin-bottom: 100px;
}

.left-section {
padding: 20px;
background-color: #fff;
border-right: 1px solid #ccc;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
border-radius: 8px;
position: relative;
z-index: 2;
flex: 1;
}

.left-section h2 {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 180%;
    font-weight: bold;
}

.right-section {
flex: 1;
padding-left: 100px;
padding-top: 100px;
padding-bottom: 100px;
background-color: #fff;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
border-radius: 8px;
position: relative;
z-index: 1;
width: 40%;
margin-left: -5%;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}

h2 {
    font-size: 270%;
    font-weight: bold;
    margin-bottom: 0px;
    line-height: 1.5;
}

p {
    margin-bottom: 40px;
}

.btn {
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    background-color: #6c757d;
}

table {
border-collapse: collapse;
width: 100%;
margin-top: 20px;
}

th, td {
text-align: center;
padding: 10px;
font-size: 16px;
}

th {
background-color: #f2f2f2;
font-weight: bold;
color: #444;
}

td {
font-weight: bold;
color: #333;
}

.donate {
color: #4caf50;
}

.receive {
color: #f44336;

}

/* Additional styling to make it more visually appealing */
table {
border: 2px solid #ccc;
}

th,
td {
border: 1px solid #ccc;
}

th:first-child,
td:first-child {
border-left: 2px solid #ccc;
}

th:last-child,
td:last-child {
border-right: 2px solid #ccc;
}

tr:last-child td {
border-bottom: 2px solid #ccc;
}

.btn-donate {
    display: inline-block;
    padding: 12px 20px;
    margin-right: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #c50909; /* Primary button color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn-request {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #00991f; /* Primary button color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn-request:hover {
    background-color: #00991f; /* Darker color on hover */
}

.btn-donate:hover {
    background-color: #c50909; /* Darker color on hover */
}
