@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}

.login-page{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

.login{
    width: 100%;
}

.login h1{
    font-size: 26px;
    padding-bottom: 20px;
    text-align: center;
}

.input{
    /* width: 100%; */
    margin-top: 15px;
    text-align: center;
}

.input input{
    width: 400px;
    border: none;
    outline: none;
    border: 1px solid #DBDBDB;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
}

.btn{
    text-align: center;
    margin-top: 30px;
}

.btn button{
    width: 200px;
    padding: 10px 30px;
    border: none;
    background: #055091;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
}



.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #97ceff;
    padding: 10px 6%;
}

.sub-menu{
    display: none;
    position: absolute;
    top: 55px;
    right: -7px;
    z-index: 9;
}


.sub-menu.show{
    display: block;
}

.sub-menu button{
    border: none;
    background: #055091;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
}

.menu i{
    font-size: 20px;
}



/* Left sidebar */
aside {
    width: 220px;
    background: #eaeaea;
    padding: 20px;
    border-right: 1px solid #ccc;
    height: 100%;
}

/* Content on the right */
.content {
    flex: 1;
    padding: 20px;
}


body {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Header spans full width */
.header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
}

/* Main layout: aside + content */
.main {
    display: flex;
    flex: 1;
}

/* Left sidebar */
aside {
    width: 220px;
    background: #eaeaea;
    padding: 20px;
    border-right: 1px solid #ccc;
    height: 100%;
}

/* Content on the right */
.content {
    flex: 1;
    padding: 20px;
}

/* Submenu dropdown */
.sub-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
}

.sub-menu.show {
    display: block;
}

aside ul{
    list-style: none;
}


aside ul li{
    list-style: none;
    padding-top: 40px;
}

aside ul li:first-child{
    padding-top: 0px;
}

.content form {
    padding-top: 50px;
}

.content form .inputt{
    text-align: center;
}

.content form .inputt input{
    width: 70%;
    padding: 10px 30px;
    border: 1px solid #c0c0c0;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 16px;
}

.content form .inputt textarea{
    width: 70%;
    padding: 10px 30px;
    border: 1px solid #c0c0c0;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 16px;
    height: 200px;
}

ul li a{
    text-decoration: none;
    color: #000;
}



.table-data-style {
    width: 100%;
    border: 1px solid #DBDBDB;
    border-collapse:collapse ;
}

.table-data-style table {
    width: 100%;
    text-align: center;

}

table thead tr td {
    border: 1px solid #DBDBDB;
    padding: 8px;
    text-align: center;
}

table tbody tr td {
    border: 1px solid #DBDBDB;
    padding: 8px;
    text-align: center;
}

.icon{
    font-size: 20px;
}

.icon-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border: none;
    border-bottom: 1px solid #DBDBDB;
}

.trash i:hover{
    color: red;
    transition: all ease-in-out .3s;
    cursor: pointer;
}

.edit i:hover{
    color: blue;
    transition: all ease-in-out .3s;
    cursor: pointer;
}


.job-header{
    display: flex;align-items: center;justify-content: space-between;
    margin-bottom: 30px;
}

.job-header button{
    border: none;
    background-color: #055091;
    color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: all ease-in-out .3s;
}

.job-header button:hover{
    border: 1px solid #055091;
    background-color: #fff;
    transition: all ease-in-out .3s;
    color: #000;
}