.btn-primary {
    background-color: #004085 !important; /* Replace with your primary color */
    border-color: #003366 !important;
}

.btn-secondary {
    background-color: #17a2b8 !important; /* Replace with your secondary color */
    border-color: #117a8b !important;
}

.btn-primary:hover {
    background-color: #002752 !important;
}

.btn-secondary:hover {
    background-color: #138496 !important;
}

iframe {
    position: relative;
    overflow: hidden;
}
iframe::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: white; /* Covers footer */
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}
.sidebar {
    width: 250px;
    background: #343a40;
    color: white;
    padding: 20px;
}
.main-content {
    flex-grow: 1;
    padding: 20px;
    margin-left: 250px;
    margin-top: -100px;
}
