*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Arial, sans-serif;
}

body{
    min-height:100vh;
    background:#f5f3fb;
}
/* INDEX PAGE */
.container{
    min-height:auto;
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.logo{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:42px;
    margin-bottom:20px;
}

.container h1{
    font-size:38px;
    margin-bottom:10px;
}

.subtitle{
    color:#e8ddff;
    margin-bottom:35px;
}

.button-group{
    display:flex;
    flex-direction:column;
    gap:15px;
    width:320px;
}

.user-btn,
.admin-btn{
    border:none;
    padding:15px;
    border-radius:25px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.user-btn{
    background:#d8ccff;
    color:#2d0b45;
}

.admin-btn{
    background:#8c6fff;
    color:white;
}

.user-btn:hover,
.admin-btn:hover{
    transform:translateY(-3px);
    opacity:0.9;
}

.footer-text{
    margin-top:30px;
    font-size:13px;
    color:#e8ddff;
}

/* LOGIN PAGES */
.auth-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    background:linear-gradient(180deg,#2d0b45,#6d3fb4);
}

.auth-card{
    width:900px;
    min-height:520px;
    display:flex;
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,0.25);
}

.auth-left{
    width:50%;
    padding:55px;
    background:linear-gradient(180deg,#2d0b45,#6d3fb4);
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.auth-left h1{
    font-size:34px;
    margin-bottom:15px;
}

.auth-left p{
    font-size:20px;
    margin-bottom:15px;
}

.auth-left span{
    line-height:1.7;
    color:#eee;
}

.auth-right{
    width:50%;
    padding:55px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#fbf8ff;
}

.auth-right h2{
    color:#2d0b45;
    margin-bottom:8px;
}

.auth-subtitle{
    color:#777;
    margin-bottom:30px;
}

.auth-right label{
    display:block;
    margin-bottom:7px;
    color:#444;
    font-size:14px;
}

.auth-right input{
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:25px;
    outline:none;
}

.auth-right input:focus{
    border-color:#8c6fff;
}

.auth-right button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:25px;
    background:#6d3fb4;
    color:white;
    font-weight:bold;
    font-size:16px;
    cursor:pointer;
}

.auth-right button:hover{
    background:#5831a3;
}

.back-link{
    text-align:center;
    margin-top:20px;
    color:#6d3fb4;
    text-decoration:none;
    font-size:14px;
}

/* DASHBOARD */
.dashboard-layout{
    display:flex;
    min-height:100vh
}

.sidebar{
    width:250px;
    background:linear-gradient(180deg,#2d0b45,#6d3fb4);
    color:white;
    padding:30px 20px 80px 20px;

    position:fixed;
    top:0;
    left:0;
    height:100vh;

    overflow-y:auto;
    overflow-x:hidden;
}

.sidebar h2{
    font-size:22px;
    margin-bottom:35px;
}

.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:14px 16px;
    margin-bottom:10px;
    border-radius:12px;
    transition:0.3s;
}

.sidebar a:hover,
.sidebar .active{
    background:rgba(255,255,255,0.2);
}

.sidebar::-webkit-scrollbar{
    width:6px;
}

.sidebar::-webkit-scrollbar-thumb{
    background:#8b5cf6;
    border-radius:10px;
}

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.top-bar h1{
    color:#2d0b45;
}

.top-bar p{
    color:#777;
}

.admin-profile{
    background:white;
    padding:12px 20px;
    border-radius:25px;
    color:#6d3fb4;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:30px;
}

.card{
    background:white;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.card h3{
    color:#777;
    font-size:15px;
    margin-bottom:12px;
}

.card h2{
    color:#2d0b45;
    font-size:32px;
    margin-bottom:8px;
}

.card p{
    color:#6d3fb4;
    font-size:14px;
}

.dashboard-section{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.chart-box,
.activity-box{
    background:white;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.chart-box h3,
.activity-box h3{
    color:#2d0b45;
    margin-bottom:20px;
}

.bar-chart{
    height:230px;
    display:flex;
    align-items:end;
    gap:18px;
    padding-top:20px;
}

.bar-chart div{
    width:45px;
    background:linear-gradient(180deg,#9b7dff,#6d3fb4);
    border-radius:12px 12px 0 0;
}

.activity-box ul{
    list-style:none;
}

.activity-box li{
    padding:13px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

/* GENERAL PAGE TABLE */
.page-title{
    color:#2d0b45;
    margin-bottom:20px;
}

.table-box{
    background:white;
    padding:25px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

table{
    width:100%;
    border-collapse:collapse;
}

th,td{
    padding:14px;
    text-align:left;
    border-bottom:1px solid #eee;
}

th{
    color:#2d0b45;
    background:#f4efff;
}

td{
    color:#555;
}

.status{
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.approved{
    background:#e6fff0;
    color:#1f9d55;
}

.pending{
    background:#fff4d6;
    color:#b7791f;
}

.rejected{
    background:#ffe6e6;
    color:#d93025;
}

.action-btn{
    padding:8px 12px;
    border:none;
    border-radius:10px;
    background:#6d3fb4;
    color:white;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
    .auth-card{
        flex-direction:column;
        width:95%;
    }

    .auth-left,
    .auth-right{
        width:100%;
    }

    .dashboard-layout{
        display:flex;
        min-height:100vh;
    }

    .sidebar{
        width:260px;
        min-width:260px;
        height:100vh;
        position:fixed;
        top:0;
        left:0;
        background:linear-gradient(180deg,#2d0b45,#5b2aa0);
        padding:30px 20px;
        z-index:9999;
    }

    .cards{
        grid-template-columns:repeat(2,1fr);
    }

    .dashboard-section{
        grid-template-columns:1fr;
    }
}

@media(max-width:600px){
    .cards{
        grid-template-columns:1fr;
    }

    .button-group{
        width:90%;
    }
}
.table-box form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.table-box label{
    color:#2d0b45;
    font-weight:600;
}

.table-box input,
.table-box select,
.table-box textarea{
    width:100%;
    padding:13px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
}

.table-box textarea{
    resize:none;
}
.approve-btn{
    background:#ede3ff;
    color:#6d3fb4;
    border:none;
    padding:10px 16px;
    border-radius:12px;
    cursor:pointer;
    font-weight:700;
}

.reject-btn{
    background:#dc3545;
    color:white;
    border:none;
    padding:8px 12px;
    border-radius:8px;
    cursor:pointer;
}

.approved{
    background:#d4edda;
    color:#155724;
}

.rejected{
    background:#f8d7da;
    color:#721c24;
}

.pending{
    background:#fff3cd;
    color:#856404;
}
/* COUNSELLOR FORM */

.table-box form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.table-box label{
    font-weight:600;
    color:#2d0b45;
}

.table-box input,
.table-box select,
.table-box textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:14px;
}

.table-box input:focus,
.table-box select:focus,
.table-box textarea:focus{
    border-color:#6d3fb4;
}

.action-btn{
    margin-top:10px;
    background:#6d3fb4;
    color:white;
    border:none;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;
}

.action-btn:hover{
    background:#5831a3;
}

/* BUTTONS */

.approve-btn{
    background:#28a745;
    color:white;
    border:none;
    padding:8px 12px;
    border-radius:8px;
    cursor:pointer;
    margin-right:5px;
}

.approve-btn:hover{
    background:#dccdff;
}

.reject-btn{
    background:#dc3545;
    color:white;
    border:none;
    padding:8px 12px;
    border-radius:8px;
    cursor:pointer;
}

.reject-btn:hover{
    background:#c82333;
}

/* STATUS */

.status{
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.available{
    background:#d4edda;
    color:#155724;
}

.unavailable{
    background:#f8d7da;
    color:#721c24;
}

/* TABLE */

table{
    width:100%;
    border-collapse:collapse;
}

th{
    background:#f3edff;
    color:#2d0b45;
}

th,
td{
    padding:14px;
    text-align:left;
    border-bottom:1px solid #eee;
}

tr:hover{
    background:#faf8ff;
}
.counsellor-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    gap:15px;
}

.counsellor-count{
    background:#f3edff;
    padding:12px 18px;
    border-radius:10px;
    color:#2d0b45;
    font-weight:bold;
}

#searchCounsellor{
    width:280px;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

#searchCounsellor:focus{
    border-color:#6d3fb4;
}

.profile-pic{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}
/* =========================
   FEEDBACK PAGE
========================= */

.feedback-stat{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.feedback-box{
    background:white;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.feedback-box h2{
    color:#6d3fb4;
    font-size:32px;
    margin-bottom:8px;
}

.feedback-box p{
    color:#666;
    font-size:14px;
}

.rating-stars{
    color:#ffc107;
    font-size:18px;
    letter-spacing:2px;
}

.feedback-comment{
    max-width:350px;
    line-height:1.6;
    color:#555;
    word-wrap:break-word;
}

.table-box form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.table-box label{
    font-weight:600;
    color:#2d0b45;
}

.table-box select,
.table-box textarea{
    width:100%;
    padding:13px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    font-size:14px;
    background:white;
}

.table-box select:focus,
.table-box textarea:focus{
    border-color:#6d3fb4;
}

.table-box textarea{
    resize:none;
}

.action-btn{
    margin-top:10px;
    background:#6d3fb4;
    color:white;
    border:none;
    padding:13px;
    border-radius:12px;
    cursor:pointer;
    font-weight:bold;
}

.action-btn:hover{
    background:#5831a3;
}

@media(max-width:768px){
    .feedback-stat{
        grid-template-columns:1fr;
    }

    .feedback-comment{
        max-width:100%;
    }
}
/* =========================
   PROFILE PAGE
========================= */

.profile-wrapper{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:25px;
}

.profile-card{
    background:white;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.profile-avatar{
    width:100px;
    height:100px;
    background:#6d3fb4;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:42px;
    font-weight:bold;
}

.profile-card h2{
    color:#2d0b45;
    margin-bottom:8px;
}

.profile-card p{
    color:#777;
    margin-bottom:20px;
}

.profile-edit-btn{
    display:inline-block;
    padding:12px 20px;
    background:#6d3fb4;
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-weight:bold;
}

.profile-edit-btn:hover{
    background:#5831a3;
}

.info-row{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.info-row span{
    color:#777;
}

.info-row strong{
    color:#2d0b45;
}

.profile-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:25px;
}

.profile-stat-box{
    background:white;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.profile-stat-box h2{
    color:#6d3fb4;
    margin-bottom:8px;
}

.profile-stat-box p{
    color:#666;
}

@media(max-width:900px){
    .profile-wrapper{
        grid-template-columns:1fr;
    }

    .profile-stats{
        grid-template-columns:1fr;
    }
}
.back-link{
    display:inline-block;
    margin-top:15px;
    color:#6d3fb4;
    text-decoration:none;
    font-weight:600;
}

.back-link:hover{
    text-decoration:underline;
}
/* =========================
   PREMIUM PAGE
========================= */

.premium-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:30px;
}

.premium-card{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.premium-card h2{
    color:#2d0b45;
    margin-bottom:10px;
}

.premium-card h3{
    color:#6d3fb4;
    margin:15px 0;
    font-size:24px;
}

.premium-card ul{
    margin:20px 0;
    padding-left:20px;
}

.premium-card li{
    margin-bottom:12px;
    color:#555;
}

.premium-highlight{
    border:3px solid #6d3fb4;
    background:#fbf8ff;
}

.plan-note{
    color:#777;
    font-size:14px;
}

.membership-box{
    background:#f8f5ff;
    padding:25px;
    border-radius:15px;
}

.membership-box h3{
    color:#6d3fb4;
    margin-bottom:15px;
}

.membership-box p{
    margin-bottom:8px;
    color:#555;
}

.action-btn:disabled{
    background:#aaa;
    cursor:not-allowed;
}

@media(max-width:768px){
    .premium-grid{
        grid-template-columns:1fr;
    }
}
.dashboard-six{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

@media(max-width:1100px){
    .dashboard-six{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:800px){
    .dashboard-six{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .dashboard-six{
        grid-template-columns:1fr;
    }
}
.profile-image{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:4px solid #6d3fb4;
}
/* =========================
   BOOKING COUNSELLOR CARD
========================= */

.booking-card-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.booking-counsellor-card{
    background:white;
    padding:28px;
    border-radius:20px;
    box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

.booking-avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#6d3fb4;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    font-weight:bold;
    margin-bottom:15px;
}

.booking-counsellor-card h2{
    color:#2d0b45;
    margin-bottom:8px;
}

.booking-counsellor-card p{
    color:#555;
    margin-bottom:8px;
    line-height:1.5;
}

.booking-rating{
    color:#6d3fb4 !important;
    font-weight:bold;
}

.slot-box{
    background:#f5efff;
    padding:15px;
    border-radius:14px;
    margin:18px 0;
}

@media(max-width:900px){
    .booking-card-grid{
        grid-template-columns:1fr;
    }
}
.premium-click{
    cursor:pointer;
    transition:0.3s ease;
}

.premium-click:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(109,63,180,0.20);
}

.price-preview{
    background:#f5efff;
    color:#2d0b45;
    padding:16px;
    border-radius:14px;
    margin:18px 0;
    font-size:18px;
}

.price-preview strong{
    color:#6d3fb4;
    font-size:24px;
}
@media print {

    .table-box {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }

    body {
        background: white !important;
    }
}
.profile-image{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #6d3fb4;
    margin-bottom:15px;
}
.home-bg{
    min-height:calc(100vh - 90px);
    background:
        linear-gradient(rgba(45, 11, 69, 0.75), rgba(109, 63, 180, 0.75)),
        url("../images/counselling-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.home-card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    padding:45px;
    border-radius:25px;
}
.info-page-card{
    max-width:950px;
    margin:130px auto 40px;
    background:rgba(255,255,255,0.92);
    padding:45px;
    border-radius:25px;
    box-shadow:0 12px 35px rgba(0,0,0,0.18);
    color:#2d0b45;
}

.info-page-card h1{
    font-size:42px;
    margin-bottom:20px;
    color:#2d0b45;
}

.info-page-card p{
    font-size:18px;
    line-height:1.8;
    color:#444;
    margin-bottom:18px;
}

.about-box,
.contact-card{
    background:#f5efff;
    padding:25px;
    border-radius:18px;
    margin-top:25px;
}

.about-box h2,
.contact-card h2{
    color:#6d3fb4;
    margin-bottom:15px;
}

.about-box li{
    font-size:18px;
    margin-bottom:10px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

@media(max-width:800px){
    .contact-grid{
        grid-template-columns:1fr;
    }
}
.nav-active{
    color:#d8c8ff !important;
    border-bottom:2px solid #d8c8ff;
    padding-bottom:6px;
}
.home-navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(45,11,69,0.9);
    backdrop-filter:blur(10px);
    z-index:999;
}

.nav-logo{
    color:white;
    font-size:32px;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    padding:10px 18px;
    border-radius:10px;
    transition:0.3s;
}

.nav-links a:hover{
    background:#8b5cf6;
    color:white;
}

.nav-active{
    background:#a78bfa;
    color:white !important;
}
.home-navbar a{
    text-decoration:none !important;
    color:white !important;
}

.main-content{
    margin-left:250px;
    width:calc(100% - 250px);
    min-height:100vh;
    padding:35px;
    background:#efecf7;
}

.top-bar h1{
    font-size:32px;
    font-weight:700;
    color:#2d0b45;
    margin-bottom:10px;
}

.top-bar p{
    color:#777;
    font-size:22px;
}

.admin-profile{
    background:#ffffff;
    color:#6f42c1;
    padding:18px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    width:fit-content;
    min-width:110px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}
html,
body{
    margin:0;
    font-family:'Poppins', sans-serif;
    background:linear-gradient(180deg, #6f5197 0%, #8060ad 50%, #8f6fbd 100%);
}
body{
    background:linear-gradient(
        180deg,
        #6f5197 0%,
        #8060ad 50%,
        #8f6fbd 100%
    ) !important;
}

.main-content{
    background:#efecf7 !important;
}
.print-btn{
    background:#6d3fb4 !important;
    color:white !important;
    border:none;
    padding:10px 16px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

.print-btn:hover{
    background:#5831a3 !important;
}
.table-box{
    overflow-x:auto;
}

.table-box table{
    width:100%;
    min-width:1100px;
    border-collapse:collapse;
}

.table-box th,
.table-box td{
    padding:14px 16px;
    font-size:14px;
    vertical-align:middle;
    white-space:normal;
}

.table-box td{
    word-break:break-word;
}

.table-box .approve-btn,
.table-box .reject-btn{
    margin:4px 0;
    padding:8px 12px;
    font-size:14px;
}

.sidebar::-webkit-scrollbar{
    width:6px;
}

.sidebar::-webkit-scrollbar-thumb{
    background:#8b5cf6;
    border-radius:10px;
}
.sidebar{
    width:250px;
    background:linear-gradient(180deg,#2d0b45,#6d3fb4);
    color:white;

    position:fixed;
    left:0;
    top:0;

    height:100vh;
    overflow-y:auto;
    overflow-x:hidden;

    padding:30px 20px 80px 20px;
    z-index:99999;
}

.sidebar::-webkit-scrollbar{
    width:6px;
}

.sidebar::-webkit-scrollbar-thumb{
    background:#8b5cf6;
    border-radius:10px;
}

.logout{
    display:block;
    margin-top:20px;
    background:rgba(255,255,255,0.15);
}
/* RESTORE TABLE FONT & SIZE */

.table-box{
    overflow-x:auto;
}

.table-box table{
    width:100%;
    min-width:1100px;
    border-collapse:collapse;
    table-layout:auto;
}

.table-box th,
.table-box td,
th,
td{
    padding:14px 16px !important;
    font-size:16px !important;
    line-height:1.5 !important;
    text-align:left !important;
    vertical-align:middle !important;
    border-bottom:1px solid #eee !important;
    white-space:normal !important;
}

.table-box th,
th{
    background:#f3edff !important;
    color:#2d0b45 !important;
    font-weight:700 !important;
}

.table-box td,
td{
    color:#555 !important;
}

.status{
    display:inline-block !important;
    padding:8px 14px !important;
    border-radius:20px !important;
    font-size:14px !important;
    font-weight:700 !important;
    white-space:nowrap !important;
}
/* RESTORE TABLE FONT & SIZE */

.table-box{
    overflow-x:auto;
}

.table-box table{
    width:100%;
    min-width:1100px;
    border-collapse:collapse;
    table-layout:auto;
}

.table-box th,
.table-box td,
th,
td{
    padding:14px 16px !important;
    font-size:16px !important;
    line-height:1.5 !important;
    text-align:left !important;
    vertical-align:middle !important;
    border-bottom:1px solid #eee !important;
    white-space:normal !important;
}

.table-box th,
th{
    background:#f3edff !important;
    color:#2d0b45 !important;
    font-weight:700 !important;
}

.table-box td,
td{
    color:#555 !important;
}

.status{
    display:inline-block !important;
    padding:8px 14px !important;
    border-radius:20px !important;
    font-size:14px !important;
    font-weight:700 !important;
    white-space:nowrap !important;
}