.content {
    margin-left: 250px; /* Same width as the sidebar */
}
/* Add your specific table styles here to override Bootstrap */
.content table {
    width: 100%;
    border-collapse: collapse;
}
.content table tbody tr:nth-child(even) {
    background-color: #d3cfcf; 
}
.content table tbody tr:nth-child(odd) {
    background-color: #ffffff; 
}
.content table tbody tr:hover {
    background-color: #9b9898 ;
}
.content table th {
    background-color: lightblue;
}
.content table tr {
    text-align: center;
}
.copyright {
    padding: 10px;
    color: #ccc;
    font-size: 14px;
    text-align: center;
    margin-top: auto;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    margin-top: 50px;
}

img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    color: #6c757d;
    margin-bottom: 40px;
}

.btn-primary, .btn-success {
    padding: 10px 20px;
    font-size: 18px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-primary:hover, .btn-success:hover {
    opacity: 0.9;
    background-color: #0056b3;
}

.button-signup-container {
    display: flexbox;
    gap:15px;
}

.card {
    transition: transform 0.2s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card_body{
    display: flex;
    flex-direction: column;
    justify-content: space_between;
}

.card:hover {
    transform: scale(1.05);
}

.row {
    display: flex;
    justify-content: center;
}
.fs-20px {
    font-size: 20px;
}

