/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11 Feb, 2024, 12:16:59 PM
    Author     : aditya.k
*/

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

html {
    overflow-x: hidden;
}

body {
    background: #eee;
    overflow-x: hidden;
}

/* SIDEBAR */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #F9F9F9;
    z-index: 2000;
    font-family: 'Lato', sans-serif;
    transition: .3s ease;
    overflow-x: hidden;
    scrollbar-width: none;
}

#sidebar .brand {
    font-size: 24px;
    font-weight: 700;
    height: 56px;
    display: flex;
    align-items: center;
    color: #3C91E6;
    position: sticky;
    top: 0;
    left: 0;
    background: #F9F9F9;
    z-index: 500;
    padding-bottom: 20px;
    box-sizing: content-box;
}

#sidebar .brand .logo-container1 {
    margin-right: 10px;
    margin-left: 20px;
    margin-top: 90px; 
    text-align: center; 
    padding: 20px;
    background-color: #3C91E6; 
    border-radius: 10px;
    margin-bottom: 20px;
}

#sidebar .brand .logo-container1 img {
    width: 200px;
    height: auto; 
}

#sidebar .brand .close-btn {
    display: none;
}

#sidebar .side-menu {
    width: 100%;
    margin-top: 60px;
}

#sidebar .side-menu li {
    height: 40px;
    background: transparent;
    margin-left: 6px;
    border-radius: 48px 0 0 48px;
    padding: 4px;
}

#sidebar .side-menu li.active {
    background: #eee;
    position: relative;
}

#sidebar .side-menu li a {
    width: 100%;
    height: 100%;
    background: #F9F9F9;
    display: flex;
    align-items: center;
    border-radius: 48px;
    font-size: 16px;
    color: #342E37;
    white-space: nowrap;
    overflow-x: hidden;
}

#sidebar .side-menu.top li.active a {
    color: #3C91E6;
}

#sidebar .side-menu.bottom li.active a {
    color: #3C91E6;
}

#sidebar .side-menu li a.logout {
    color: #DB504A;
}

#sidebar .side-menu li a .bx {
    min-width: calc(60px  - ((4px + 6px) * 2));
    display: flex;
    justify-content: center;
}

#sidebar.active {
    transform: translateX(-450px); /* Hide sidebar off-screen */
}
/* SIDEBAR */

/* CONTENT */
#content {
    position: relative;
    width: calc(100% - 280px);
    left: 280px;
    transition: .3s ease;
}

#content nav .bx.bx-menu {
    display: none;
}

@media (max-width: 451px) 
{
    #sidebar .brand .close-btn {
        display: block; /* Show the element */
        padding: 3px;
        border-radius: 45%; /* Makes the button circular */
        font-size: 10px; /* Adjust font size */       
        margin-left: 230px;
        border: 1px solid lightgray; /* Sets border color to light gray */
    }
    
    #content main .custom-form input,
    #content main .custom-form select {
        width: 340px !important;
        /*margin-bottom: 10px;  Adjust margin between fields */
    } 
    
    .form-control1 {
        width: 100%; /* Adjust width as needed for responsiveness */
        max-width: 310px; /* Set a maximum width if necessary */
    }
    
    .form-control2 {
        width: 100%; /* Adjust width as needed for responsiveness */
        max-width: 280px; /* Set a maximum width if necessary */
    }
    
    #content main .table-data .head h3 {
        margin-right: auto;
        font-size: 20px  !important;
        font-weight: 600;
    }
    
    #content main .head-title1 .left1 h1 {
        font-size: 20px !important;
        font-weight: 600;
        margin-bottom: 10px;
        color: #342E37;
    }
    
     #content main .head-title .left h1 {
        font-size: 20px !important;
        font-weight: 600;
        margin-bottom: 10px;
        color: #342E37;
    }
}

@media (max-width: 375px) 
{ 
    #content main .custom-form input,
    #content main .custom-form select {
        width: 287px !important;
    }  
    
    #content nav .bx.bx-menu {
        display: block; /* Show the element */
        cursor: pointer;
        color: #342E37;
    }
    
    #sidebar .brand .close-btn {
        display: block; /* Show the element */
        padding: 3px;
        border-radius: 45%; /* Makes the button circular */
        font-size: 10px; /* Adjust font size */       
        margin-left: 180px;
        border: 1px solid lightgray; /* Sets border color to light gray */
    }
    
    .textarea {
        width: 78px !important;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-sizing: border-box;
        height: 100px;
        resize: vertical; 
        font-size: 14px;
    }
    
    .form-control1 {
        width: 100%; /* Adjust width as needed for responsiveness */
        max-width: 260px; /* Set a maximum width if necessary */
    }
    
    #content main .table-data .head h3 {
        margin-right: auto;
        font-size: 18px  !important;
        font-weight: 600;
    }
    
    #content main .head-title1 .left1 h1 {
        font-size: 20px !important;
        font-weight: 600;
        margin-bottom: 10px;
        color: #342E37;
    }
    
    #content main .head-title .left h1 {
        font-size: 20px !important;
        font-weight: 600;
        margin-bottom: 10px;
        color: #342E37;
    }
}

@media (max-width: 768px) {
    #sidebar {
        position: fixed;
        width: 440px;
        height: 100%;
    }
    
    #sidebar {
        left: 0; 
    }
    
    #sidebar .side-menu {
        width: 100%;
        margin-top: 20px;
    }
    
    #sidebar .side-menu li a {
        font-size: 12px;
        color: #342E37;
    }

    #sidebar .brand .logo-container1 {
       margin-right: 10px;
       margin-left: 15px;
       margin-top: 45px; 
       padding: 10px;
       background-color: #3C91E6; 
       border-radius: 10px;
    }

    #sidebar .brand .logo-container1 img {
        width: 100px;
        height: auto; 
    } 
    
    #sidebar.active {
        transform: translateX(-450px); /* Hide sidebar off-screen */
    }

    #content {
        position: relative;
        width: 100%;
        left: 0px;
    }
    
    #content nav .bx.bx-menu {
        display: block; /* Show the element */
        cursor: pointer;
        color: #342E37;
    }
    
    #content nav::before {
        display: none; /* Hide the pseudo-element on mobile devices */
    }
    
    #content main .head-title .left {
        position: fixed;
        margin-top: 75px;   
    }
    
    #content main .head-title .btn-domain {
        position: fixed;
        margin-top: 50px;
        right: 20px; 
    }
    
    #content main table.box-domain {
        width: 100%;
        margin-top: 90px !important; 
    }
    
    .table-data {
        margin-top: 30px !important; 
    }
    
    .table-data1 {
        display: none; /* Hide the sidebar */
    }
    
    #content main .custom-form {
        padding: 15px; /* Further reduced padding for very small screens */
    }
    
    .form-column {
        flex: 1 1 100%; /* Full width columns on mobile */
        margin-right: 0; /* Remove margin between columns */
    }
    
    .col {
        display: flex;
        justify-content: space-between; /* Add space between buttons */
    }
    .col > a.btn {
        max-width: 50%;
    }
    
    .table-version {
        width: 100% !important;
        margin: 20px 0;
        padding: 15px;
        background-color: #f8f8f8;
        border-radius: 20px;
    }
    
    .container10 {
        margin-top: 5px !important;
    }
    
    .table-version10 {
        width: 100% !important;
        margin: 20px 0;
        padding: 15px;
        background-color: #f8f8f8;
        border-radius: 20px;
    }

    .logs-container {
        position: relative; /* Reset positioning */
        margin-left: 0 !important; /* Reset margin */
        width: 100%; /* Take full width */
        max-width: 100%; /* Ensure it doesn't exceed the viewport width */
    }
}

/* HEADER */
#content nav {
    height: 55px;
    background: #F9F9F9;
    padding: 0 24px;
    display: flex;
    align-items: center;
    grid-gap: 24px;
    font-family: 'Lato', sans-serif;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

#content nav::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -40px;
    left: 0;
    border-radius: 50%;
    box-shadow: -20px -20px 0 #F9F9F9;
}

#content nav form {
    max-width: 400px;
    width: 100%;
    margin-right: auto;
}

#content nav .profile img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 60%;
}
/* HEADER */

/* MAIN */
#content main {
    width: 100%;
    padding: 36px 24px;
    font-family: 'Poppins', sans-serif;   
    max-height: calc(100vh - 56px);
    overflow-y: auto;
}

#content main .head-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 16px;
    flex-wrap: wrap;
}

#content main .head-title .left h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #342E37;
}

#content main .head-title .left .breadcrumb {
    display: flex;
    align-items: center;
    grid-gap: 16px;
}

#content main .head-title .left .breadcrumb li a {
    color: #AAAAAA;
    pointer-events: none;
}

#content main .head-title .left .breadcrumb li a.active {
    color: #3C91E6;
    pointer-events: unset;
}

#content main .head-title1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 16px;
    flex-wrap: wrap;
}

#content main .head-title1 .left1 h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #342E37;
}

#content main .head-title1 .left1 .breadcrumb {
    display: flex;
    align-items: center;
    grid-gap: 16px;
}

#content main .head-title1 .left1 .breadcrumb li a {
    color: #AAAAAA;
    pointer-events: none;
}

#content main .head-title1 .left1 .breadcrumb li a.active {
    color: #3C91E6;
    pointer-events: unset;
}

#content main .box-info { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    grid-gap: 24px;
    margin-top: 36px;
}

#content main .box-info li {
    padding: 24px;
    background: #F9F9F9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    grid-gap: 24px;
}

#content main .box-info li .bx {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content main .box-info li:nth-child(1) .bx {
    background: #CFE8FF;
    color: #3C91E6;
}

#content main .box-info li:nth-child(2) .bx {
    background: #FFF2C6;
    color: #FFCE26;
}

#content main .box-info li:nth-child(3) .bx {
    background: #FFE0D3;
    color: #FD7238;
}

#content main .box-info li .text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #342E37;
}

#content main .box-info li .text p {
    color: #342E37;	
}
/* MAIN */

/* DOMAIN TABLE */
#content main table.box-domain {
    width: 100%;
    border-collapse: collapse;
    margin-top: 36px;
}

#content main table.box-domain th,
#content main table.box-domain td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ffffff; 
    border-radius: 8px;
}

#content main table.box-domain th {
    background: #F9F9F9;
    font-weight: 600;
}

#content main .head-title .btn-domain {
    height: 36px;
    padding: 0 16px;
    border-radius: 36px;
    background-color: #3C91E6;  
    color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    font-weight: 500;
    transition: background-color 0.3s ease; 
}

#content main .head-title .btn-domain:hover {
    border: 2px solid #3C91E6;  
    background: transparent;  
    color: #3C91E6;
}

#content main .head-title1 .btn-domain {
    height: 36px;
    padding: 0 16px;
    border-radius: 36px;
    background-color: #3C91E6;  
    color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    font-weight: 500;
    transition: background-color 0.3s ease; 
}

#content main .head-title1 .btn-domain:hover {
    border: 2px solid #3C91E6; 
    background: transparent;  
    color: #3C91E6;
}
#content main table.box-domain tbody tr:nth-child(even) {
    background: var(--light-gray);
}

#content main table.box-domain .bx {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content main table.box-domain tr:nth-child(1) .bx {
    background: #CFE8FF;
    color: #3C91E6;
}

#content main table.box-domain .text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #342E37;
}

#content main table.box-domain .text p {
    color: #342E37;
}

.dropdown ul li a {
    display: flex;
    align-items: center; 
}

.dropdown ul li a .text {
    font-size: 16px;
}

.dropdown ul li a i {
    margin-right: 8px;
}

.dropdown ul li a .bx.bxs-user-circle {
    font-size: 18px;
}

.dropdown ul li a .bx-log-out {
    font-size: 16px;
    color: #DB504A;
}

.dropdown ul li a .bx-log-out,
.dropdown ul li a .text {
    font-weight: bold;
}
/* DOMAIN TABLE */

/* PAGINATION */
#content main .pagination {
    margin: 10px 0;
    display: flex;
    justify-content: flex-start;
}

#content main .pagination li {
    margin: 0 5px;
    list-style: none;
    display: inline-block;
}

#content main .pagination li a,
#content main .pagination li span {
    padding: 8px 12px;
    border: 1px solid #3C91E6; 
    border-radius: 4px; 
    color: #3C91E6;
    text-decoration: none;
    cursor: pointer;
}

#content main .pagination li.active a,
#content main .pagination li a:hover {
    background: #3C91E6;
    color: #F9F9F9;
}
/* PAGINATION */

/* PROFILE */
.profile-container .dropdown {
    display: none;
    position: absolute;
    top: 50px; 
    right: 40px; 
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1;
    padding: 5px;
    border: 1px solid #ccc;
}

.profile-container .dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-container .dropdown li {
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.profile-container .dropdown a {
    text-decoration: none;
    color: #333;
    display: block;
    display: inline-flex;
}
    
.profile-container .dropdown.open {
    display: block;
}

.profile-container .dropdown li:hover {
    background-color: #ddd;
}
    
.profile-container .dropdown li {
    border-bottom: 1px solid #ddd;
}

.profile-container .dropdown li:last-child {
    border-bottom: none; 
}

 .profile-container .dropdown .logout-item a .text {
    color: #DB504A;
}
  
.profile-container .profile .arrow-icon img {
    margin-right: 0; 
    transition: transform 0.3s ease;
}

.profile-container .profile .up .arrow-icon img {
    transform: rotate(180deg); 
}

.profile-container .profile {
    cursor: pointer;
}

.profile-container .profile:hover {
    cursor: pointer; 
}
/* PROFILE */

/* LOGOUT BUTTON */
#sidebar .side-menu.bottom {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#sidebar .side-menu.bottom li {
    margin-bottom: 8px;
}
/* LOGOUT BUTTON */

/* EDIT BUTTON */
.btn.btn-success {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px; 
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #28a745;
    border-radius: 5px;
    color: #28a745;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-success:hover {
    background-color: #28a745;
    color: #ffffff;
    border-color: #28a745;
}
/* EDIT BUTTON */

/* DELETE BUTTON */
.btn.btn-danger {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px; 
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #dc3545;
    border-radius: 8px;
    color: #dc3545;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-danger:hover {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}
/* DELETE BUTTON */

.button-container {
    text-align: right; 
}

.button-container button {
    margin-left: 5px; 
}

#content main .custom-form {
    margin-top: 20px;
    background: #fff;
    padding: 20px; /* Adjust padding for smaller screens */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;  /* Ensures the form can adapt to smaller screen sizes */
    width: 100%; /* Fallback width for older browsers */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
}

#content main .custom-form label {
    display: block;
    margin-bottom: 5px;
}

#content main .custom-form input,
#content main .custom-form select {
    width: 93%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
}

.form-column {
    flex: 1 1 50%; /* Equal width columns on desktop */
    margin-right: 15px; /* Space between columns */
}

.form-column:last-child {
    margin-right: 0; /* Remove margin from last column */
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 8px; 
    font-size: 16px; 
}

input, select {
    width: 100%;
    padding: 12px; 
    border: 1px solid #ddd;
    border-radius: 6px; 
    box-sizing: border-box;
    height: 38px;
}

textarea {
    width: 94%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    height: 100px;
    resize: vertical; 
    font-size: 14px;
}

input::placeholder, select::placeholder {
    font-size: 15px; 
}

select {
    font-size: 14px; 
}

select option {
    font-size: 14px; 
}

select:focus option[value=""] {
    font-size: 14px; 
}

select option[value="-1"] {
    font-size: 14px;    
}

input[type="text"] {
    font-size: 12px;
}

.btn.btn-primary {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px; 
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #3C91E6;
    border-radius: 8px;
    color: #3C91E6;
    background: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-primary:hover {
    background: #3C91E6;
    color: #ffffff;
    border-color: #3C91E6;
}

.btn.btn-warning {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px; 
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #AAAAAA;
    border-radius: 8px;
    color: #AAAAAA;
    background: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-warning:hover {
    background: #AAAAAA;
    color: #ffffff;
    border-color: #AAAAAA;
}

.btn.btn-add {
    display: inline-block;
    width: 30px;
    height: 37px; 
    padding: 0;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-left: 5px;
    border: 2px solid #3C91E6;
    border-radius: 8px;
    color: #3C91E6;
    background: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-add:hover {
    background: #3C91E6;
    color: #ffffff;
    border-color: #3C91E6;
}

.btn.btn-minus {
    display: inline-block;
    width: 30px;
    height: 37px; 
    padding: 0;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-left: 5px;
    border: 2px solid #dc3545;
    border-radius: 8px;
    color: #dc3545;
    background: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-minus:hover {
    background: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}

#content-email main {
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#content main .table-data > div {
    border-radius: 20px;
    background: #F9F9F9;
    padding: 24px;
    overflow-x: auto;
}

#content main .table-data .head h3 {
    margin-right: auto;
    font-size: 24px;
    font-weight: 600;
}

#content main .table-data .order {
    flex-grow: 1;
    flex-basis: 500px;
}

.table-data {
    width: 100%;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 20px;
}

.order {
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.head {
    padding: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.head h3 {
    margin: 0;
}

.col-lg-12,
.col-md-12,
.col-sm-12,
.col-xs-12 {
    width: 100%;
}

.card {
    margin: 15px 0;
}

.body {
    padding: 15px;
}

.header {
    text-align: center;
}

.content {
    max-height: auto;
    overflow: auto;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

#sentimentgraph {
    width: 100%;
    height: 400px; 
    margin-top: 20px;
}

/* Search bar styles */
.search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}


.search-bar select, .search-bar form {
    flex-grow: 0;
    height: 100%; 
}

.search-bar select {
    padding: 0 20px 0 5px; 
    height: 100%;
    border: none;
    background: #eee;
    border-radius: 36px;
    width: calc(300px - 30px); 
    color: #342E37;
}

.head-content {
    display: flex;
    align-items: center;
}

.head-content h3 {
    margin-right: auto;
    font-size: 24px;
    font-weight: 600;
}
/* Search bar styles */

/* SETTINGS SECTION */
.form-row {
    display: flex;
}

.form-column {
    flex: 1;
}

.profile-section {
    display: flex;
    align-items: center;
}

.image-section {
    margin-right: 20px;
}

#displayUsername, #displayUserId {
    display: block;
    margin-top: 10px; 
}

.profile-image {
    border-radius: 50%; 
    border: 2px solid #ccc; 
}

#displayUsername {
    font-weight: bold;
    font-size: 18px; 
}
/* SETTINGS SECTION */

/* LOGIN PAGE */
.center-text {
    text-align: center;
}           
            
.custom-width {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
       
body {
    font-family: poppins, sans-serif;
    background: #eee;
}
            
#captcha {
    max-width: 350px;
    margin: 0 auto;
    padding: 25px;
    background-color: #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
            
#captcha p {
    font-size: 18px;
    margin: 0;
}
            
#captchaExpression {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}
            
#captchaInput {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    margin-top: 8px;
    border-radius: 8px;
}
            
#captchaResult {
    display: block;
    color: red;
    font-size: 14px;
    margin-top: 5px;
}
            
.chk{
    cursor: pointer;
}

footer a {
    color: black; 
}

.card-registration {
    background-color: #ffffff;
    color: #000000;
    border-radius: 15px;
}

.logo-container {
    text-align: center; 
    padding: 20px;
    background-color: #3C91E6; 
    border-radius: 10px;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

.button-container1 {
    text-align: center;
    margin-top: 20px;
    border-radius: 8px;
}

.btn-lg {
    width: 100%; 
    padding: 20px 15px; 
    border-radius: 8px;
}

.btn-primary {
    background-color: #3C91E6; 
    color: #ffffff; 
    border: 2px solid #3C91E6;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; 
}

.text-danger {
    color: red;
}

.custom-notification-strip {
    position: fixed;
    top: 90px;
    right: 10px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.notification-content {
    color: #2ba728; 
}
    
.notification-content-fail {
    color: #c73033; 
}
    
.boxed-text {
    background-color: #E7EFF8;
    padding: 7px; 
    margin: 20px 0 35px; 
    border-radius: 8px;
}
 
.boxed-text p {       
    font-size: 18px;
    color: #3C91E6; 
    margin-left: 10px;
    font-weight: 500;
}
    
.boxed-text h5 {
    margin-left: 10px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 400;        
    color: #8A8A8A; 
}

.eye-icon {
    position: absolute;
    right: 10px; 
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    pointer-events: auto;
    z-index: 1;   
}

.email-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
    padding-left: 10px;
    border-radius: 8px;
}

.email-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 34px;
    height: 38px;
    background-color: #DDDDDD;
    z-index: -1;
    border-radius: 3px;
}

.lock-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 1;
    padding-left: 10px;
    border-radius: 8px;
}

.lock-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 34px;
    height: 38px;
    background-color: #DDDDDD;
    z-index: -1;
    border-radius: 3px;
}

.social-media-button {
    display: inline-flex; 
    justify-content: center;
    align-items: center;
    width: 40px; 
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-right: 10px;
    border: 1px solid transparent; /* Add border */
}

.social-media-button i {
    font-size: 18px;
    text-align: center;
}

.twitter {
    /*color: #1da1f2;*/
    border-color: #010a0f;
}

.google {
    color: #1da1f2;
    border-color: #1da1f2;
}

.social-media-login {
    text-align: center;
}
/* LOGIN PAGE */

.logs-container {
    margin-left: 72%;
}

.container10 {
     margin-top: -550px;
}

.logs-table {
    width: 100%;
    order: 2;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 20px;
}

#content main table.box-version {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#content main table.box-version th,
#content main table.box-version td {
    padding: 12px;
    text-align: left;
    border: 1px solid #cfcfcf;
    background-color: #f6f6f6;
    border-radius: 8px; 
}

td a.btn.btn-label {
    display: inline-block;
    padding: 4px 15px;
    font-size: 14px;
    color: white;
    text-decoration: none;
    pointer-events: none;
    border-radius: 20px;
    border: 2px solid #3C91E6;
}

td a.btn.btn-label:hover {
    color: white;
    background-color: #3C91E6;
    border-color: #3C91E6;
}

#content main .table-version10 > div {
    border-radius: 20px;
    background: #F9F9F9;
    padding: 24px;
    overflow-x: auto;
}

.table-version {
    width: 70%;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 20px;
}

#content main table.box-version {
    width: 100%;
    border-collapse: collapse;
    margin-top: 36px;
}

#content main table.box-version th,
#content main table.box-version td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ffffff;
    border-radius: 8px; 
    background: #f6f6f6;
}

#content main table.box-version th {
    background: #F9F9F9;
    font-weight: 600;
}

.btn.btn-primary1 {
    display: inline-flex;
    align-items: center; 
    justify-content: center; 
    padding: 7px 10px; 
    font-size: 20px; 
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #3C91E6;
    border-radius: 8px;
    color: #3C91E6;
    background: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-primary1:hover {
    background: #3C91E6;
    color: #ffffff;
    border-color: #3C91E6;
}

.btn.btn-danger1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px; 
    font-size: 20px; 
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #dc3545;
    border-radius: 8px;
    color: #dc3545;
    background-color: #ffffff;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn.btn-danger1:hover {
    background-color: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
}

/* Apply styling to all .table-version10 elements */
.table-version10 {
    width: 70%;   
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 20px;
    margin-top: 22px;
    margin-bottom: 22px;  
}

/*.table-version10 + .table-version10 {
    margin-top: 10px;  Space above each .table-version10 except the first one 
}*/

.logs-head {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px;
    border-bottom: 1px solid #e6e6e6;
}

.head1 {
    display: flex; /* Use flexbox to align items */
    justify-content: center; /* Distribute items evenly, pushing them to opposite ends */
    align-items: center; /* Center align items vertically */
    padding: 15px; /* Optional padding for the container */
    border-bottom: 1px solid #e6e6e6;
}

.form-group1 {
    position: relative;
}

.form-control1 {
    width: 340px !important;
}

.form-control2 {
    width: 330px !important;
}
