body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1000; /* Ensure sidebar is above content */
}

.sidebar h4 {
    margin-bottom: 20px;
}

.content-wrapper {
    margin-left: 250px; /* Offset content by sidebar width */
    padding: 20px;
    width: calc(100% - 250px); /* Adjust width to fit beside sidebar */
}

.carousel-inner img {
    height: 300px;
    object-fit: cover;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #007BFF;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.col-form-label {
    text-align: right;
    padding-right: 15px;
}

.table {
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }

    .content-wrapper {
        margin-left: 200px;
        width: calc(100% - 200px);
    }

    .carousel-inner img {
        height: 200px;
    }

    .col-form-label {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .content-wrapper {
        margin-left: 0;
        width: 100%;
    }

    .d-flex {
        flex-direction: column;
    }

    .col-form-label {
        text-align: left;
    }
}