﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    /*padding-top: 50px;*/
    padding-bottom: 20px;
    /*background: linear-gradient(to bottom right, #11AC9C, #11AC9C);*/
    background: #f1f5fc;
    color: black;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}


/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}

.bg-dark {
    background-color: #11ac9c  !important;
}

.navbar-brand {
    font-size: 20px;
    color: #fff;
}

.navbar-nav .show > .nav-link, .navbar-nav .nav-link.active {
    color: #fff;
}

.my-table {
    color: white !important; /* Set font color to white */
}

    .my-table th, .my-table td {
        color: #2c3e50 !important; /* Ensure all text in table is white */
    }

    .my-table thead th {
        /*background: #875c5cba; */
        background-color: #16AC9C;
        color: white !important; /* Ensure white text in header */
    }

.sidebar {
    background: #11ac9c;
    padding: 15px;
    min-height: 100%;
    border-right: 2px solid #a084a1;

}

    .sidebar ul {
        padding-left: 0;
    }

    .sidebar .list-group-item {
        background: #f0eef2;
        color: black;
        border: 1px solid #a084a1;
        padding: 15px;
        transition: background 0.3s ease-in-out;
        font-weight: bold;
    }

        /*.sidebar .list-group-item:hover {
            background: #e0d8e5;
        }

        .sidebar .list-group-item a {
            color: black;
            text-decoration: none;
            display: block;
        }


         .sidebar {
            width: 250px;
            height: 100vh;
            background-color: #343a40;
            padding: 15px;
            position: fixed;
            left: -250px;
            top: 0;
            transition: all 0.3s;
            color: white;
        }
        .sidebar.show {
            left: 0;
        }
        .sidebar a {
            color: white;
            display: block;
            padding: 10px;
            text-decoration: none;
        }
        .sidebar a:hover {
            background: #495057;
            color: black;
        }*/

.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #11ac9c;
    padding: 15px;
    position: fixed;
    left: -250px;
    top: 40px;
    transition: all 0.3s;
    color: white;
}

    .sidebar.show {
        left: 0;
    }

    .sidebar a {
        color: white;
        display: block;
        padding: 10px;
        text-decoration: none;
    }

        .sidebar a:hover {
            background: #11ac9c;
            color: black;
        }

.content {
    margin-left: 20px;
    padding: 20px;
    flex-grow: 1;
    transition: margin-left 0.3s;
}

.content-container.shift {
    margin-left: 270px;
}

.toggle-btn {
    position: absolute;
    left: 12px;
    /*top: 20px;*/
    background: #11ac9c;
    color: white;
    border: none;
    padding: 10px;
}
        .content {
            margin-left: 20px;
            padding: 20px;
            flex-grow: 1;
            transition: margin-left 0.3s;
        }
.content-container.shift {
    margin-left: 270px;
}
        .toggle-btn {
            position: absolute;
            left: 12px;
            /*top: 20px;*/
            background: #11ac9c;
            color: white;
            border: none;
            padding: 10px;
        }
.appointment-box {
    /*background: #c0392b;*/
    background-color: #212529;
    background-image: linear-gradient(to right, rgba(12, 172, 156, 0.80), #b4bec9);
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 10px;
}

.appointment-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.table-bordered th, .table-bordered td {
    text-align: center;
}

.fc .fc-col-header-cell-cushion {
    display: inline-block;
    padding: 2px 4px;
}
.fc .fc-col-header-cell-cushion { /* needs to be same precedence */
    padding-top: 5px; /* an override! */
    padding-bottom: 5px; /* an override! */
}
#calendar a {
    color: inherit !important;
    text-decoration: none !important;
}
