/* Main Panel Layout Fix */
.main-panel {
    position: relative;
    float: right;
    width: calc(100% - 260px);
    min-height: 100vh;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .main-panel {
        width: 100%;
        float: none;
    }
}

/* Header Styles */
.dream-clg-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #f57f1a;
}

.dream-clg-heading span {
    color: rgb(128, 128, 128);
    font-weight: 500;
}

/* Tab Button Styles */
.tab-btn {
    border: 1px solid orange;
    border-radius: 10px;
    height: 50px;
    width: 120px;
    font-size: 22px;
    background-color: white;
    /* Default state */
    color: orange;
    cursor: pointer;
    margin: 0 5px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: #fff3e0;
}

.tab-btn.active-tab {
    background-color: orange;
    color: white;
}

/* Sidebar overrides if needed (copied from Books.css or similar) */
.sidebar .nav p {
    text-transform: capitalize !important;
    font-size: 12.7px !important;
    font-weight: 400;
    font-weight: 400;
}

.dashboard {
    width: 260px;
    height: 100vh;
    background: #626CAC;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
}

/* Top Bar Styles */
.ndb-top-bar {
    background: #fafafa;
    padding: 6px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ndb-tb-1 {
    background: #E9E7FD;
    padding: 5px;
    border-radius: 5px;
}

.ndb-tb-input {
    border: none;
    outline: none;
    background: #E9E7FD;
    font-size: 14px;
    font-weight: 300;
    margin-left: 10px;
}

.ndb-tb-right {
    gap: 30px;
}

.ndb-plan-wrapper {
    background: #fff;
    padding: 6px 15px;
    border-radius: 5px;
}

.ndb-tb-tel {
    background: #F57F1A;
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
    padding: 5px 10px;
}

.ndb-np a {
    color: #F57F1A;
    font-weight: 600;
    font-size: 14px;
    margin-left: 10px;
}

.ndb-tb-user-pic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
