body {
    font-family: Arial, sans-serif;
}

.ad-container {
    margin: 20px 0;
}

.btn-block {
    padding: 20px;
    font-size: 1.2rem;
}

.sidebar {
    position: fixed;
    top: 56px; /* Height of navbar */
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 20px 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}

.main-content {
    margin-left: 250px; /* Width of sidebar */
}
/* styles.css */

/* Reset Button Styling */
.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Form Validation Feedback */
.invalid-feedback {
    display: none;
    color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}
/* Ensure the footer sticks to the bottom */
html, body {
    height: 100%;
    margin: 0;
}

.wrapper {
    min-height: 100%; !important;
    display: flex; !important;
    flex-direction: column; !important;
}

.content {
    flex: 1; !important;
}

.footer {
    flex-shrink: 0; !important;
    background-color: #343a40; /* Dark background for footer */
    color: white; /* White text for footer */
    text-align: center;
    padding: 20px 0;
}