/* Reset styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrolling */
}

body {
    font-family: "Verdana", Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f4f4f4; */
    background-image: url("https://cdn.prod.website-files.com/62c48d78ef34931f8a604ef5/62c490351ee26e719721025d_gradient-bg.png");
    background-position: 50% 0%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -50px;
    width: 85%;
    height: 100%; /* Full height of the viewport */
}

/* Media query for mobile devices */
@media screen and (max-width: 500px) {
    .companyTitle {
        font-size: 25px !important; /* Adjust this value to your preferred font size for mobile */
    }
}

.companyTitle {
    font-weight: 900;
    font-size: 33px;
    margin-top: 15px;
    margin-bottom: 0px;
}

/* Media query for mobile devices */
@media screen and (max-width: 420px) {
    .subtext {
        font-size: 13px !important; /* Adjust this value to your preferred font size for mobile */
        line-height: 20px !important; /* Adjust this value to your preferred line height for mobile */
    }
}

.subtext {
    font-size: 15px; 
    font-weight: 500; 
    color: grey; 
    line-height: 23px; 
    text-align: center;
}

.auth-button {
    display: inline-block;
    padding: 15px 25px;
    margin-top: 20px;
    background-color: #00aeff;
    cursor: pointer;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 10px 55px rgba(0, 179, 255, 0.5); /* Adds a subtle shadow */
}

.auth-button-inactive {
    display: inline-block;
    padding: 15px 25px;
    margin-top: 20px;
    border-color: #00aeff;
    color: black;
    cursor: pointer;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 10px 55px rgba(0, 179, 255, 0.5); /* Adds a subtle shadow */
}

.auth-button:hover {
    background-color: #0056b3;
}

.button-div {
    display: flex;
    gap: 10px;
}

/* Media query for desktop (768px and up) */
@media (max-width: 800px) {
    .button-div {
        flex-direction: column; /* Stack the buttons vertically on smaller screens */
        gap: 0px;
    }
}

/* .auth-button-inactive:hover {
    background-color: #0056b3;
} */

/* New styles for the blue hue effect */
.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo {
    position: relative;
    z-index: 2;
}

/* .logo-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background-color: #00aeff;
    filter: blur(15px);
    border-radius: 20%;
    transform: translate(-50%, -50%);
    z-index: 1;
} */

.footer {
    text-align: center;
    padding: 20px;
    /* background-color: #f1f1f1; */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adjust spacing between the elements */
}

.footer .copy {
    /* margin-top: 10px; */
    font-size: 14px;
    color: #959595;
}

.footer a {
    color: #959595;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Add your CSS here */
.share-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
    width: 300px;
}

.popup h3 {
    margin-top: 0;
    font-size: 18px;
}

.popup ul {
    list-style-type: none;
    padding: 0;
}

.popup ul li {
    margin: 10px 0;
    cursor: pointer;
}

.popup ul li i {
    margin-right: 10px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
}

.share-options li {
    color: #00aeff; /* Link color */
    cursor: pointer;
    font-weight: bold;
    padding: 3px 0;
    transition: color 0.2s ease-in-out;
}

.share-options li:hover {
    color: #0056b3; /* Darker link color on hover */
    text-decoration: underline;
}

.emails-filtered {
    display: flex;
    align-items: center;
    color: #00aeff;
    margin-top: 0px;
}

.live-indicator {
    display: flex;
    align-items: center;
    margin-top: 0px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00aeff;
    margin-right: 10px;
    margin-top: 0px;
    animation: breathing 1.5s infinite;
}

.dotLive {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00aeff;
    margin-right: 12px;
    margin-top: 0px;
    animation: breathing 2.5s infinite;
}

@keyframes breathing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.7);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#totalCountDisplay {
    font-size: 23px;
    color: "#00aeff";
    font-weight: bold;
}

.profile-group {
    display: flex;
    align-items: center;
    margin-bottom: -5px;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -15px;
    object-fit: cover;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.profile-text {
    font-size: 16px;
    font-weight: 500;
    margin-left: -5px;
    color: grey;
}

/* In your styles.css */
.mobile-break {
    display: inline;
}

@media screen and (max-width: 600px) {
    .mobile-break {
        display: none;
    }
}



/* DASHBOARD STYLES */

/* Dashboard container */
.dashboard-container {
    display: flex;
    height: 100%;
    width: 100%;
    background-image: url("https://cdn.prod.website-files.com/62c48d78ef34931f8a604ef5/62c490351ee26e719721025d_gradient-bg.png");
    background-position: 50% 0%;
}

/* Style for the sidebar */
.sidebar {
    width: 100px;
    /* background-color: #111; */
    color: black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 55px; /* Adjust this value based on the height of the top bar */
}

.sidebar-header {
    margin-bottom: 30px;
}

.sidebar-nav ul {
    list-style-type: none;
    padding: 0;
}

.sidebar-nav ul li {
    margin-bottom: 20px;
}

.sidebar-nav ul li a {
    color: black;
    text-decoration: none;
}

.sidebar-nav ul li a:hover {
    text-decoration: underline;
}

/* Style for the main content */
.main-content {
    flex-grow: 1;
    padding: 20px;
    margin-top: 30px; /* Ensure the content starts below the top bar */
}

/* Style for the top bar */
.top-bar {
    display: flex;
    font-family: "Verdana", Arial, sans-serif;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    /* padding: 15px 30px; */
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 100%;
    height: 70px; /* Set a fixed height */
}

/* Align logo and user info in top-bar */
.top-bar-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: "Verdana", Arial, sans-serif;
    align-items: center;
}

.top-bar .logo {
    margin: 0;
    font-size: 23px;
    font-family: "Verdana", Arial, sans-serif;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
}

.top-bar-user {
    font-weight: bold;
    margin-right: 40px;
    font-size: 16px;
    font-family: "Verdana", Arial, sans-serif;
    display: flex;
    cursor: pointer;
    align-items: center;
}

/* Style for the widget list */
.widget-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-height: 83vh; /* Adjust this value as needed */
    /* padding: 20px; */
    font-family: "Verdana", Arial, sans-serif;
    margin-top: 40px;
    justify-content: space-between; /* Distribute widgets evenly */
}

/* Style for each widget */
.widget {
    background-color: white;
    padding: 20px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px); /* three widgets per row, minus gaps */
    box-sizing: border-box; /* Ensure padding and borders are included in width calculation */
}

/* Style for widget titles */
.widget h3 {
    margin-top: 0;
    font-size: 1.5em;
    margin-bottom: 15px;
    line-height: 23px;
    font-family: "Verdana", Arial, sans-serif;
    color: gray;
    font-weight: 500;
}

/* Style for widget content */
.widget p {
    margin-bottom: 0;
    font-family: "Verdana", Arial, sans-serif;
    margin-top: 15px;
    font-weight: 700;
    font-size: 2em;
    word-wrap: break-word;
    word-break: break-word;
}

#extraScrollMobile {
    display: none;
}

#userEmail {
    color: black;
}

/* Media query for desktop (900px and smaller) */
@media (max-width: 900px) {
    .widget {
        flex: 1 1 100%; /* Make each widget take full width */
    }

    .widget-list {
        overflow-y: auto;
    }

    #extraScrollMobile {
        display: block;
    }
}

.whitelist-container {
    display: flex;
    flex-wrap: wrap; /* Allows the boxes to wrap to the next line on smaller screens */
    gap: 10px; /* Space between each box */
    /* margin-top: 20px; */
    padding: 0px;
}

.blacklist-container {
    display: flex;
    flex-wrap: wrap; /* Allows the boxes to wrap to the next line on smaller screens */
    gap: 10px; /* Space between each box */
    /* margin-top: 20px; */
    padding: 0px;
}

.whitelist-box {
    background-color: #f0f0f0;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    display: inline-block;
}

.blacklist-box {
    background-color: #f0f0f0;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
    display: inline-block;
}

/* For the switch when it's checked */
.mdl-switch.is-checked .mdl-switch__thumb {
    background-color: #1976d2; /* Custom color for the thumb */
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Toggle button styling */
  .dropdown-toggle {
    font-weight: bold;
    /* margin-right: 50px; */
    border-width: 0px;
    /* border-color: gray; */
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: transparent;
    border-radius: 7px;
    background-color: white;
    font-size: 16px;
    font-family: "Verdana", Arial, sans-serif;
    display: flex;
    cursor: pointer;
    align-items: center;
  }

  @media (max-width: 900px) {
    .dropdown-toggle {
        font-size: 12px;
    }
  }
  
  /* Dropdown menu styling */
  .dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    border-radius: 7px;
    background-color: white;
    font-family: "Verdana", Arial, sans-serif;
    margin-top: 10px;
    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .dropdown-menu a {
    color: black;
    padding: 12px 16px;
    font-family: "Verdana", Arial, sans-serif;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-menu a:hover {
    background-color: #ddd;
  }