@import url('https://fonts.googleapis.com/css2?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');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --primary-font: "Poppins", sans-serif;
    --secondory-font: "Ubuntu", sans-serif;
    --title-font: "Oswald", sans-serif;
    --primary-color: #1553a5;
    --secondary-color: #ff914d;

}

* {
    font-family: var(--secondory-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondory-font);
}

button:focus {
    box-shadow: none !important;
}

.icon {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

p {
    color: gray;
}

/* -------------------------main app------------------------------*/
.main-app {
    height: 100vh;
    width: 100%;
}

/*--------------------------side panel -------------------------------*/
.side-panel {
    width: 20%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.side-panel .side-panel-logo {
    height: 30%;

}

.side-panel .side-panel-logo img {
    transition: all 0.3s ease-in-out;

}

.side-panel-logo .side-panel-name .heading {
    color: white;
}

.side-panel .side-panel-manu {
    height: 70%;
    overflow-y: scroll;
}


.side-panel-manu .heading {
    color: var(--secondary-color);
}

.side-panel-manu ul li a {
    color: white;
    font-size: 18px;
}

.side-panel-manu ul li a span {
    margin-right: 10px !important;
}

.side-panel-manu ul li {
    transition: all 0.3s ease-in-out;
    padding: 10px 8px;
    border-radius: 5px;
}

.side-panel-manu ul li:hover {
    background-color: #5a9ef765;

}

.side-panel-manu ul .active {
    background-color: #5a9ef765;

}

#ncte ul li a {
    font-size: 17px;
}

/*--------------------------header-------------------------------------*/
.header-section {
    background-color: var(--primary-color);
    height: 10%;
    position: relative;
    z-index: 2;
    box-shadow: 14px 6px 20px 2px rgba(21, 5, 22, 0.185);
}

.side-collapse-btn .icon {
    color: white;
    font-size: 20px;
    background-color: #5a9ef736;
    height: 40px;
    width: 50px;
    border-radius: 5px;
}

.refresh-btn button {
    background-color: #5a9ef769;
    color: white;
    transition: all 0.3s ease-in-out;
}

.refresh-btn button:hover {
    color: white;
}

.header-acount-container .icon {
    background-color: white;
    color: var(--secondary-color);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 18px;
}

.header-acount-container .logout-btn {
    background-color: rgb(180, 2, 2);
    border: none;
    color: white;
}

/* ------------------------main page ----------------------------------*/
main {
    width: 80%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    /* overflow-y:scroll; */
}

.main-page {
    background-color: #e6ecfa;
    /* background-color: #1745c4; */
    height: 90%;
    overflow-y: scroll;
    padding: 50px 20px;
    padding-bottom: 0px;
}

.page-title .heading {
    color: rgb(70, 70, 70);
}

.page-title .heading span {
    color: rgb(114, 114, 114);
    font-size: 18px;
}

/*--------------------------------Dashboard page ------------------------*/
.dash-card {
    border-radius: 10px;
    /* height: 200px; */
}

.dash-card .icon {
    width: 60px;
}

.dash-card .icon img {
    height: 50px;
}

.dash-card .card-info .heading {
    color: rgb(70, 70, 70);
    font-size: 16px;
    text-align: right;
    font-weight: normal;
}

.dash-card .card-info span {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

.dash-card .card-info svg {
    height: 30px;
    stroke: green;
}

/*-----------------------------------download page ---------------------------*/
.form-container {
    background-color: white;
    border-radius: 10px;
}

.form-title h5 {
    color: rgb(80, 80, 80);
    font-size: 18px;
}

.form form .input input,
textarea {
    border-radius: 5px;
}

select {
    border-radius: 5px;
}

select option {
    color: gray;
}

.submit-btn button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s ease-in-out;
}


.submit-btn button:hover {
    background-color: #013579;
    color: white;
    border: none;
}


/*------------------------Data view area-----------------------------*/
.data-view-container {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.data-title {
    background-color: #d2dbf3;
}

.data-title .heading {
    font-size: 18px;
    color: rgb(80, 80, 80);
}

.data-table .table tr td {
    vertical-align: middle;
}

.data-table .table tr td iframe {
    height: 150px;
    width: 150px;
}

.data-table .table tbody tr td .btn {
    background-color: var(--primary-color);
    border: none;
    color: white;
}

.action-btn .edit-icon {
    color: var(--primary-color);
}

.action-btn .del-icon {
    color: rgb(180, 2, 2);
}


/* video page */


.sds_video iframe {
    height: 100px !important;
    width: 200px !important;
}

.news-page .data-view-section .data-table .table tbody tr .news-title {
    max-width: 200px;
    word-wrap: break-word;
    /* Legacy support */
    overflow-wrap: break-word;
    /* Modern CSS */
    word-break: break-word;
}

.news-page .data-view-section .data-table .table tbody tr .news-desc {
    word-wrap: break-word;
    /* Legacy support */
    overflow-wrap: break-word;
    /* Modern CSS */
    word-break: break-word;
    /* color: red; */
}

/*------------------------------Login page---------------------------------*/
.login-page {
    height: 100vh;
    width: 100%;
    background: url('../src/bg-img.jpg');
    background-size: cover;
}

.login-page .form-wrapper {
    background: linear-gradient(#1d1e24ce, #1553a5f3);
}

.login-page .form-wrapper .form-container {
    width: 350px;
    background-color: rgba(255, 255, 255, 0.116);
    backdrop-filter: blur(5px);
}

.form-wrapper .form-container form .form-title .icon {
    height: 80px;
    width: 80px;
    margin: auto;
    font-size: 70px;
    color: white;
    /* border: 1px solid red; */
}

.form-wrapper .form-container form .form-title .heading {
    color: white;
    font-weight: 400;
}

form .form-input .input {
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
}

form .form-input .input input {
    background-color: rgba(255, 255, 255, 0.308);
    backdrop-filter: blur(5px);
    width: 100%;
    border: none;
}

form .form-input .input input:focus {
    outline: none;
}

form .form-input .input input::placeholder {
    color: black;
}

form .form-input .icon {
    background-color: rgba(255, 255, 255, 0.527);
    backdrop-filter: blur(5px);
    width: 70px;
    font-size: 20px;
    border-right: 2px solid white;
}

form .form-input .toggle-btn {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    color: rgb(48, 48, 48);

}

form .login-btn button {
    background-color: #003379;
    border: none;
    color: white;
    height: 45px;
    transition: all 0.3s ease-in-out;
}

form .login-btn button:hover {
    background-color: rgb(1, 23, 54);
    border: none;
    color: white;
}