 *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
    overflow-x:hidden;
    background:#f3f6fb;
}

.sidebar{

position:fixed;

left:0;

top:0;

width:260px;

height:100vh;

background:#111827;

color:#fff;

z-index:9999;

overflow-y:auto;

}

.topbar{

position:fixed;

top:0;

left:260px;

right:0;

height:70px;

background:#fff;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 25px;

box-shadow:0 3px 12px rgba(0,0,0,.08);

z-index:999;

}

.main-content{

margin-left:260px;

margin-top:70px;

padding:25px;

}

/* ===========================
APPLICATION TABLE
=========================== */

.table-responsive{
    overflow-x:auto;
    width:100%;
}

.table{
    min-width:1900px;
}

.table td,
.table th{
    vertical-align:middle;
    white-space:nowrap;
}

.table td{
    font-size:14px;
}

.card{
    overflow:hidden;
}
 
 .admin-footer{
    background:#0f172a;
    color:#fff;
    padding:18px 30px;
    border-top:4px solid #0d6efd;
    margin-top:50px;
    font-size:14px;
}

.admin-footer strong{
    color:#38bdf8;
}

.admin-footer .d-flex{
    min-height:40px;
}

@media(max-width:768px){

.admin-footer .d-flex{
    flex-direction:column;
    text-align:center;
    gap:8px;
}

}/* ===========================
ADMIN LAYOUT
=========================== */

body{
    background:#f1f5f9;
    font-family:Arial,Helvetica,sans-serif;
}

.sidebar{
    position:fixed;
    left:0;
    top:0;
    width:260px;
    height:100vh;
    background:#111827;
    overflow-y:auto;
    z-index:999;
}

.sidebar .logo{
    padding:25px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.sidebar .logo h3{
    color:#fff;
    margin:0;
    font-size:24px;
    font-weight:700;
}

.sidebar ul{
    list-style:none;
    padding:20px 0;
    margin:0;
}

.sidebar ul li{
    margin:6px 15px;
}

.sidebar ul li a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 18px;
    color:#d1d5db;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
    font-weight:500;
}

.sidebar ul li a:hover{
    background:#2563eb;
    color:#fff;
}

.sidebar ul li a i{
    width:20px;
    text-align:center;
}

/* ===========================
TOPBAR
=========================== */

.topbar{
    position:fixed;
    left:260px;
    top:0;
    right:0;
    height:70px;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
    z-index:998;
}

.topbar h4{
    margin:0;
    font-size:20px;
    font-weight:600;
}

/* ===========================
CONTENT
=========================== */

.main-content{
    margin-left:260px;
    padding:90px 30px 30px;
}

/* ===========================
CARDS
=========================== */

.card{
    border:none;
    border-radius:16px;
}

.card-body{
    padding:25px;
}

.card h2{
    font-weight:700;
}

/* ===========================
BUTTONS
=========================== */

.btn{
    border-radius:8px;
}

/* ===========================
MOBILE
=========================== */

@media(max-width:992px){

.sidebar{
    width:80px;
}

.sidebar .logo h3{
    display:none;
}

.sidebar ul li a{
    justify-content:center;
    font-size:0;
}

.sidebar ul li a i{
    font-size:18px;
    width:auto;
}

.topbar{
    left:80px;
}

.main-content{
    margin-left:80px;
}

}

@media(max-width:768px){

.sidebar{
    position:relative;
    width:100%;
    height:auto;
}

.topbar{
    position:relative;
    left:0;
}

.main-content{
    margin-left:0;
    padding:30px 15px;
}

}


/* ==========================
Founder Management
========================== */

.founder-profile-card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    height:100%;
}

.founder-profile-img{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin:30px auto 15px;
    border:6px solid #fff;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

@media(max-width:991px){

.founder-profile-img{
    width:170px;
    height:170px;
}

}

.founder-profile-card .badge{
    font-size:14px;
}

.founder-profile-card input[type=file]{
    margin-top:10px;
}

@media(max-width:991px){

.founder-profile-card{
    position:static;
}

 

}

/* Founder Dashboard */

.founder-profile-card{

background:#fff;
border-radius:20px;
transition:.3s;
}

.founder-profile-card:hover{

transform:translateY(-5px);
box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.founder-profile-img{

transition:.4s;

}

.founder-profile-img:hover{

transform:scale(1.05);

}

.form-control{

border-radius:12px;

}

textarea.form-control{

min-height:180px;

}

.btn-primary{

border-radius:12px;
padding:12px 35px;

}

.card{

border-radius:18px;

}