/* ----- Spinner ----- */
.spinner {
    border-top: 0px dotted #10E7C3; 
    border-bottom: 0px dotted #10E7C3; 
    border-right: 7px solid #10E7C3;
    border-left: 7px solid #10E7C3; 
    border-radius: 50%;
    width: 100px;
    height: 100px;
    box-shadow: 0 0 20px 10px rgba(16, 231, 195, 0.5), inset 0 0 20px 10px rgba(16, 231, 195, 0.5);
    filter: blur(4px);
    opacity: 0;
    animation-name: spin, fadeIn;
    animation-duration: 450ms, 400ms;
    animation-timing-function: linear, ease;
    animation-iteration-count: infinite, 1;
    animation-delay: 250ms;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-wrap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 44, 57, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    animation-name: fadeIn;
    animation-duration: 400ms;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-delay: 250ms;
    animation-fill-mode: forwards;
}

/* ----- Back to top ----- */
.back-to-top {
    position: fixed;
    bottom: 60px;
    right: calc((100% - 1850px) / 2 - 100px);
    color: #10E7C3;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #10E7C3;
    display: none;
    transition: opacity 0.3s ease-in-out;
    text-decoration: none;
    font-size: 1.176rem;
}

.back-to-top:hover {
    background-color: #2EFAC8;
    color: #F7FAFC;
}

/* ----- Top Wrap ----- */
.top-banner {
    background-color: #10E7C3;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 2px;
}

.top-banner p {
    margin: 2px;
    padding: 6px;
    color: #2D3748;
}

.top-banner a {
    color: #FFFD01;
    text-decoration: underline;
    text-shadow: 1px 1px 2px #666;
}

.top-banner a:hover {
    color: #1a202c;
    text-shadow: 1px 1px 2px #666;
}


/* ----- Admin ----- */
.admin-report-wrap {
    display: flex;
    justify-content: space-between;
}

.admin-report-data-section {
    width: 30%; /* Adjust width as needed */
    padding: 40px;
    border-right: 2px solid #10E7C3;
}

.admin-report-data-section:last-child {
    border-right: 0px solid #10E7C3;
}

.admin-report-data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #10E7C3;
}

.admin-report-description {
    font-weight: bold;
    font-size: 1.176rem;
}

.admin-report-data {
    /* Styles for data values */
}

/* ----- Header ----- */

.header-wrap {
    background-color: #F7FAFC;
    color: #252c39;
    border: 1px solid #F7FAFC;
}

.header-container {
    max-width: 1850px;
    margin: auto;
}

/* === Menu */
.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #F7FAFC;
    color: #252c39;
    height: 100%;
    padding: 1em;
}

.top-nav img {
    height: auto;
    max-height: 100px;
    margin-right: 100px;
    margin-left: 100px;
}

.menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-right: 100px;
}

.menu > li {
    margin: 0 1rem;
    overflow: hidden;
}

.menu a {
    color: #003174; 
    font-size: 1.176rem;
    font-family: Prompt, sans-serif; 
}

.menu a:hover {
    color: #0091ff;
}

.menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #252c39;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media only screen and (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 90px;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border-bottom: 2px solid #10E7C3;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: #F7FAFC;
    background-color: #2D3748;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #10E7C3;
  }
  .menu a {
    color: #0091FF;
  }
  .menu a:hover {
    color: #32BAFF;
  }
}

/* == Logo for mobile */
@media only screen and (max-width: 900px) {
      .top-nav img {
        margin-right: 20px;
        margin-left: 20px;
    }
}
@media only screen and (max-width: 500px) {
      .top-nav img {
        height: 70px;
    }
    .menu {
    top: 60px;
    }
}

/* Display sidebar mobile, hide on start */
.dashboard-sidebar-mobile, .key-info-mobile {
    display: none;
}

.dashboard-sidebar-mobile {
    justify-content: center; /* Centers items when they wrap */
}

.dashboard-sidebar-mobile ul {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line on smaller screens */
    justify-content: center; /* Centers items when they wrap */
    list-style-type: none;
    padding: 0;
    margin: 0; /* Removes default margin */
}

.dashboard-sidebar-mobile li {
    margin: 10px; /* Adds some margin around each item */
}

.dashicon {
    margin-right: 5px;
}


/* ----- Content ----- */
.content-wrap {
    margin-top: 50px;
    max-width: 1850px;
    margin-left: max(20px, calc((100% - 1850px) / 2));
    margin-right: max(20px, calc((100% - 1850px) / 2));
    padding-left: min(20px, calc((100% - 1850px) / 2));
    padding-right: min(20px, calc((100% - 1850px) / 2));
    padding: 0px;
}

.dashboard-wrap {
    display: flex;
    width: 100%;
}

.dashboard-sidebar {
    width: 15%;
    background-color: #252c39;
    color: #F7FAFC;
}

.dashicon {
    color: #10E7C3;
    margin-right: 10px;
}

/* === Onboarding */
.onboarding-wrap {
    display: inline-flex;
    padding: 0px;
    background-color: #1a202c;
    border-radius: 10px;
}

.onboarding-step1 {
    margin-left: 30px;
    padding: 10px;
    padding-right: 30px;
    border-right: 2px solid #10E7C3;
}

.onboarding-step2 {
    margin-left: 30px;
    margin-right: 30px;
    padding: 10px;
}


.onboarding-step1-title {
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}


.onboarding-step2-title {
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .onboarding-step1, .onboarding-step2 {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
    }
    .onboarding-step1-title, .onboarding-step2-title {
       font-size: 16px; 
    }
    .onboarding-wrap .fa-circle-check {
        font-size: 14px;
    }
}
@media (max-width: 430px) {
    .onboarding-step1, .onboarding-step2 {
        margin-left: 4px;
        margin-right: 4px;
        padding: 4px;
    }
    .onboarding-step1-title, .onboarding-step2-title {
       font-size: 14px; 
    }
}

/* === Key info */
.key-info {
    width: 150px;
    margin: 50px 10px 50px 30px;
    padding: 5px 10px;
    border-top: 2px solid #10E7C3;
}

.key-info h3 {
    margin: 5px 0px;
    padding: 0px;
}

.key-info p {
    margin: 0px;
    margin-top: 5px;
    padding: 0px;
}

.notice-success {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #252c39;
    border-left: 5px solid #10E7C3;
    border-radius: 5px;
    font-size: 1.176rem;
    color: #F7FAFC;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.notice-error {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #252c39;
    border-left: 5px solid #FF4D4D;
    border-radius: 5px;
    font-size: 1.176rem;
    color: #F7FAFC;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* === Dash/Profile content */
.dashboard-content {
    width: 83%;
    padding: 30px 50px 50px 50px;
    border-radius: 10px;
    background-color: #2D3748;
}

/* Style for dash welcome */
.dash-welcome {
    font-size: 1.2rem;
    padding: 40px;
    margin: 50px;
    background-color: #252c39;
    border-radius: 10px;
    max-width: 470px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.dash-button-container {
    display: flex;
    justify-content: space-between;
}

/* Stack buttons on screens smaller than 500px */
@media (max-width: 770px) {
    .dash-button-container {
        flex-direction: column;
        align-items: center;
    }
    .dash-welcome {
        margin: auto;
        margin-bottom: 20px;
    }    
    .dash-button-container button {
        margin-bottom: 10px; /* Space between stacked buttons */
    }

    /* Remove margin-bottom from the last button */
    .dash-button-container button:last-child {
        margin-bottom: 0;
    }
}


.profile-info-wrap {
    display: flex;
    margin: auto;
    margin: 20px;
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #10E7C3;
}

.profile-info-wrap p {
    margin: 10px 5px;
    padding: 3px;
    border-bottom: 4px dashed #252c39;
}

.profile-info-wrap a {
    border: 1px solid #10E7C3;
    background-color: #252c39;
    border-radius: 5px;
    color: #10E7C3;
    margin-left: 10px;
    padding: 3px;
}

.profile-info-wrap a:hover {
    border: 1px solid #2EFAC8;
    color: #2EFAC8;
}

.profile-detail-info {
    margin-right: 20px;
    padding: 20px;
}

.profile-plan-info {
    margin-right: 20px;
    border-left: 3px solid #252c39;
    padding: 20px;
}

.profile-key-info {
    margin-right: 0px;
    border-left: 3px solid #252c39;
    padding: 20px;
}

/* Stack divs on smaller screens */
@media only screen and (max-width: 700px) {
    .profile-info-wrap {
        flex-direction: column;
    }

    .profile-detail-info,
    .profile-plan-info,
    .profile-key-info {
        margin-right: 0;
        width: 100%;
        border-left: 0px solid #252c39;
        padding-left: 0px;
    }
}

/* Fix links into blocks so they dont split */
@media only screen and (max-width: 980px) {
       .profile-info-wrap a {
        display: inline-block;
        margin-top: 5px;
    } 
}

.dash-apiurl {
    text-align: center;
    width: auto;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 0px;
}

.dash-apiurl span {
    margin: auto; 
    display: inline-flex; 
    align-items: center; 
    padding: 0px 0px 0px 20px; 
    border: 1px solid #0091FF; 
    background-color: #252c39; 
    border-radius:5px;  
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.dash-apiurl button {
    margin-left: 20px;
    margin-right:0; 
    font-size:14px; 
    border-radius: 0px;
    height: auto;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2) !important;
}

.dash-apiurl h2 {
    font-size: 1.765rem;
}

.dash-apiurl p {
    font-size: 1.412rem;
}


/* Make Dash API fit on small screens */
@media only screen and (max-width: 710px) {
        .dash-apiurl span, .dash-apiurl button {
        font-size: 0.8rem;
    }
        .dash-apiurl span {
        padding-left: 7px;
    }
        .dash-apiurl button {
        padding: 5px;
    }
}
@media only screen and (max-width: 485px) {
        .dash-apiurl span,.dash-apiurl button {
        font-size: 0.7rem;
    }
        .dash-apiurl span {
        padding-left: 7px;
    }
        .dash-apiurl button {
        padding: 5px;
    }
}

/* === Login / Register / Signup */
@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

@keyframes flickerGlow {
    0%, 100% {
        box-shadow: 0 0 40px 10px rgba(16, 231, 195, 0.9);
    }
    50% {
        box-shadow: 0 0 20px 0px rgba(16, 231, 195, 0.0);
    }
}

.login-wrap {
    position: relative;
	z-index: 0;
	border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 20px 50px 50px 50px;
    text-align: center;
    animation: flickerGlow 8s infinite;
	
	
	&::before {
		content: '';
		position: absolute;
		z-index: -2;
		left: -50%;
		top: -150%;
		width: 200%;
		height: 400%;
		background-color: #2D3748;
		background-repeat: no-repeat;
		background-size: 70% 30%, 30% 70%;
		background-position: 0 0, 100% 0, 100% 100%, 0 100%;
		background-image: linear-gradient(#2D3748, #2D3748), linear-gradient(#10E7C3, #10E7C3), linear-gradient(#2D3748, #2D3748), linear-gradient(#10E7C3, #10E7C3);
		animation: rotate 16s linear infinite;
	}
	
	&::after {
		content: '';
		position: absolute;
		z-index: -1;
		left: 6px;
		top: 6px;
		width: calc(100% - 12px);
		height: calc(100% - 12px);
		background: #2D3748;
		border-radius: 20px;
	}

}

.login-wrap input {
    width: 40%;
    font-size: 1.3rem;
    padding: 5px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.login-wrap input#companyName {
    width: 40%;
}

.login-wrap input#password, .login-wrap input#confirm_password {
    width: 35%;
    font-size: 1.3rem;
    padding: 5px 20px;
    border-radius: 5px 0px 0px 5px;
}

.password-view, .confirm-password-view {
    margin-left: 0px;
    font-size: 1.3rem;
    padding: 8px;
    text-align:center;
    color: #10E7C3;
    background-color: #252c39;
    border-radius: 0px 5px 5px 0px;
    border-left: 1px solid #10E7C3;
}

.login-wrap button {
    width: 150px;
    font-size: 1.176rem;
    font-weight: bold;
    padding: 10px;
    color: #F7FAFC;
    background-color: #0091FF;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: none;
}

.login-wrap button:hover {
    background-color: #32BAFF;
}

.login-checkbox-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 30px;
}

.login-wrap input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    padding:0;
    margin-right: 10px;
}

/* Fix for smaller screens */
@media only screen and (max-width: 990px) {
    .login-wrap {
        padding: 20px 20px 20px 20px;
    }
    .login-wrap input {
        min-width: 280px;
    }
}
@media only screen and (max-width: 530px) {
    .login-wrap input {
        min-width: 240px;
    }
    .login-wrap button {
        width: 95% !important;
        box-sizing: border-box;
    }
}
@media only screen and (max-width: 420px) {
    .login-wrap input[type="password"] {
        min-width: 190px;
    }
}

/* ===== Signup */
.signup-wrap {
    position: relative;
	z-index: 0;
	border-radius: 20px;
    overflow: hidden;
    max-width: 1500px;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 0px 50px 0px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;

	&::before {
		content: '';
		position: absolute;
		z-index: -2;
		left: -50%;
		top: -150%;
		width: 200%;
		height: 400%;
		background-color: #2D3748;
		background-repeat: no-repeat;
		background-size: 70% 30%, 30% 70%;
		background-position: 0 0, 100% 0, 100% 100%, 0 100%;
		background-image: linear-gradient(#2D3748, #2D3748), linear-gradient(#10E7C3, #10E7C3), linear-gradient(#2D3748, #2D3748), linear-gradient(#10E7C3, #10E7C3);
		animation: rotate 40s linear infinite;
	}
	
	&::after {
		content: '';
		position: absolute;
		z-index: -1;
		left: 6px;
		top: 6px;
		width: calc(100% - 12px);
		height: calc(100% - 12px);
		background: #2D3748;
		border-radius: 20px;
	}

}

.signup-progress {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-progress-step1 {
    font-size: 2.353rem;
    font-weight: bold;
    border: 6px solid #10E7C3;
    color: #10E7C3;
    border-radius: 50%;
    width: 60px; 
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    margin-right: 0px;
    padding-right: 0px;
    box-shadow: 0 0 20px 10px rgba(16, 231, 195, 0.5), inset 0 0 20px 10px rgba(16, 231, 195, 0.5);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.signup-progress-step2 {
    font-size: 1.65rem;
    font-weight: bold;
    border: 3px dashed #CCCCCC;  
    color: #CCCCCC;  
    border-radius: 50%;
    width: 45px; 
    height: 45px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
    margin-left: 0px;
    padding-left: 0px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.signup-progress-spacer {
    width: 120px;
    height: 6px;
    background: linear-gradient(to right, #10E7C3 50%, #ccc 50%);
    margin: 0;
    position: relative;
    /* overflow: hidden; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.signup-progress-spacer::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    box-shadow: 0 0 20px 10px rgba(16, 231, 195, 0.5);
    left: 0;
    top: 0;
}

/* Fix progress from turning oblong on smaller screens */
@media only screen and (max-width: 450px) {
    .signup-progress-step1{
        width: 50px; /* Adjust as needed for smaller screens */
        height: 50px; /* Adjust as needed for smaller screens */
        border: 4px solid #10E7C3;
        font-size: 1.3rem;
    }
    .signup-progress-step2 {
        width: 40px; /* Adjust as needed for smaller screens */
        height: 40px; /* Adjust as needed for smaller screens */
       border: 3px dashed #CCCCCC;  
       font-size: 1rem;
    }
    .signup-progress-spacer {
        width: 90px;
    }
}

.signup-internal-wrap {
    max-width: 60%;
    margin: auto;
}

.signup-inline-container {
    display: flex;
    justify-content: space-between;
}

.signup-inline {
    width: calc(50% - 10px);
}

/* Signup input validation icons */
.signup-input-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.signup-icon {
    position: absolute;
    top: -20px; 
    left: -25px;
    display: none;
    margin: 10px;
}

.email-container .signup-icon {
    top: 0;
}

.smile {
    position: absolute;
    top: -20px; 
    left: -25px;
    color: #10E7C3;
    font-size: 32px;
    display: none;
    border: 0px solid #10E7C3;
}

.frown {
    position: absolute;
    top: -20px; 
    left: -25px;
    color: #FF4D4D;
    font-size: 32px; 
    display: none; 
    border: 0px solid #FF4D4D;
}

/* Signup prices and key display */
.signup-selector-container {
    position: relative;
    padding: 20px 10px;
    background-color: #2D3748;
    margin: 40px 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.corner {
    position: absolute;
    border-color: #10E7C3;
    border-style: solid;
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.top-left {
    border-width: 4px 0 0 4px; /* Top and left borders */
    top: 0;
    left: 0;
}

.top-right {
    border-width: 4px 4px 0 0; /* Right and bottom borders */
    top: 0;
    right: 0;
}

.bottom-right {
    border-width: 0 4px 4px 0; /* Top and left borders */
    bottom: 0;
    right: 0;
}

.bottom-left {
    border-width: 0 0 4px 4px; /* Right and bottom borders */
    bottom: 0;
    left: 0;
}

.signup-price-display {
    color: #10E7C3;
    border-bottom: 1px solid #10E7C3;
    display: inline-block;
    padding: 0px 10px;
}

.signup-key-display {
    color: #10E7C3;
    border-bottom: 1px solid #10E7C3;
    display: inline-block;
    padding: 0px 10px;
}

/* Stack divs on top of each other at 510px or less */
@media only screen and (max-width: 510px) {
    .signup-inline-container {
        flex-direction: column; 
    }
    .signup-inline {
        width: 100%; 
    }
}

.signup-internal-wrap input {
    width: 100%; 
    box-sizing: border-box;
    font-size: 1.3rem;
    padding: 5px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.signup-internal-wrap input#email {
    margin-top: 20px;
}

.signup-checkbox-container label {
    display: flex;
    align-items: center; 
    justify-content: center;
}

.signup-checkbox-container input[type="checkbox"] {
    margin-top: 20px; 
    margin-right: 10px;
    padding: 0;
    width: 20px; 
    height: 20px; 
    cursor: pointer; 
}


.signup-password-wrap {
    display: flex;
    align-items: center;
}

.signup-password-wrap input#password {
    border-radius: 5px 0px 0px 5px !important;
    flex-grow: 1; /* Allow the input to grow and fill the available space */
    flex-shrink: 1; /* Allow the input to shrink if necessary */
    margin-bottom: 0px;
}

.signup-password-wrap span {
    flex-grow: 0; /* Prevent the span from growing */
    flex-shrink: 0; /* Prevent the span from shrinking */
}

.signup-main h1 {
    font-size: 2.94rem
}
 
.signup-main {
    text-align: center;
}

.signup-main, .signup-features {
    flex: 1; 
    padding: 10px;
}

.signup-main {
    position: relative;
    overflow: hidden;
}

.signup-main::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    bottom: 50%;
    width: 6px;
    background: #10E7C3;
    animation: shrinkGrow 20s infinite;
    display: none; /* remove from design for now, seems too busy */
}

@keyframes shrinkGrow {
    0%, 100% {
        top: 10%;
        bottom: 10%;
    }
    50% {
        top: 51%;
        bottom: 51%;
    }
}

@media (max-width: 1250px) {
    .signup-main::after {
        display: none;
    }
}

.signup-features h1 {
    font-size: 2.353rem;
    text-align: center;
}

.signup-features h3 {
    text-align: center;
}



.signup-features ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.3rem;
    font-weight: bold;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.signup-features ul li {
    padding-left: 1.5em;
    position: relative;
    margin: 2px 0;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.signup-features ul li::before {
    content: "\f00c"; /* Font Awesome checkbox icon */
    font-family: "Font Awesome 6 Free"; /* Specify the Font Awesome font family */
    font-weight: 900; 
    padding-right: 5px;
    color: #10E7C3;
    position: absolute;
    left: 0;
}

@keyframes fadeGreen {
    0% { color: #F7FAFC; }
    50% { color: #10E7C3; }
    100% { color: #F7FAFC; }
}

.signup-features ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px; /* Adjust the height of the bar as needed */
    background-color: #10E7C3;
    width: 0;
    transition: width 1s; /* Adjust the duration to match the text animation */
}

.signup-features ul li.fading::after {
    width: 100%;
}

.signup-features ul li.fading {
    animation: fadeGreen 3s; 
}

.typing-dots {
    position: relative;
    overflow: hidden;
}

.typing-dots::after {
    content: "";
    position: absolute;
    white-space: pre; /* Preserve whitespace in the content */
    animation: typingDots 3s infinite;
}

@keyframes typingDots {
    0%, 100% {
        content: "";
    }
    15% {
        content: ".";
    }
    30% {
        content: "..";
    }
    45%, 60% { /* Pause after the first "..." */
        content: "...";
    }
    75% {
        content: "..";
    }
    90% {
        content: ".";
    }
}





/* signup password strength bar */
.password-strength {
    margin: auto;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 0px solid #0091FF;
}

.password-strength-meter {
    width: 0%;
    height: 8px;
    background-color: #d3d3d3;
    border-radius: 4px;
    transition: width 0.3s ease-in-out;
}

.password-strength-meter[data-strength="weak"] {
    background-color: #FF4D4D;
}

.password-strength-meter[data-strength="medium"] {
    background-color: #FFFD01;
}

.password-strength-meter[data-strength="strong"] {
    background-color: #10E7C3;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Adjust the number of columns as needed */
    gap: 0px; /* Adjust the gap between cells */
    width:70%;
    margin: auto;
}

.pricing-cell {
    padding: 10px;
    margin: 0px;
    border-left: 1px solid #10E7C3;
    border-right: 1px solid #10E7C3;
    text-align: center;
}

/* Add styles for the pricing grid header cells */
.pricing-grid div:nth-child(-n+6) {
    font-weight: bold;
}

/* Fit signup wrapper to smaller screens */
@media only screen and (max-width: 1500px) {
    .signup-internal-wrap {
        max-width: 80%; 
    }
}

/* Stack divs on top of each other at 1250px or less */
@media only screen and (max-width: 1250px) {
    .signup-wrap {
        flex-direction: column; /* Stack items vertically */
    }

    .signup-main, .signup-features {
        width: 100%; /* Ensure each div takes up the full width */
    }
    .signup-main {
        border: 0px;
    }
}
@media only screen and (max-width: 740px) {
    .signup-wrap,.signup-main {
        padding: 10px;
    }
}
@media only screen and (max-width: 660px) {
    .signup-internal-wrap {
        max-width: 80%;
    }
    .signup-main h1 {
        font-size: 2.2rem
    }

}
@media only screen and (max-width: 550px) {
    .signup-features ul {
        font-size: 1.1rem;
    }
    .signup-features h1 {
        font-size: 2rem;
    }
}
@media only screen and (max-width: 450px) {
    .signup-features ul {
        font-size: 0.9rem;
    }
    .signup-features h1 {
        font-size: 1.7rem;
    }
}

/* thanks page */
.signup-thanks {
    max-width: 1200px;
    padding: 50px;
    padding-top: 20px;
    background-color: #2D3748;
    margin: auto;
    border-radius: 10px;
}

/* === Sidebar menu */
.dashboard-sidebar ul {
    list-style-type: none;
    background-color: #2D3748;
    padding: 20px;
    border-radius: 10px;
    margin: 0px 40px 40px 0px;
}

.dashboard-sidebar li {
    font-size: 1.176rem;
    padding: 10px 0px;
}

.dashboard-sidebar li a {
    text-decoration: none;
    color: #0091FF;
    font-family: Prompt, sans-serif;
}

.dashboard-sidebar li a:hover {
    color: #10E7C3;
    border-bottom: 1px solid #10E7C3;
}

.dashboard-sidebar ul li i {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px; /* Center the icon vertically */
}

/* === Generate Keys */
.gen-form-wrap {
    display: flex;
    justify-content: space-between;
}

.gen-form-domain,
.gen-form-uuid {
    width: 50%; 
    box-sizing: border-box;
    display: none;
}

.gen-form-container {
    padding: 10px 30px 30px 30px; 
    background-color: #252c39; 
    border-radius: 5px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.gen-form-wrap input {
    border: 1px solid #10E7C3;
    width: 85%;
    max-width: 150px;
}

.gen-form-wrap textarea {
    border: 1px solid #10E7C3;
    width: 90%;
    min-width: 210px;
    border-radius: 5px;
}

.genkey-input {
    width: 80%;
    max-width: 150px;
}

/* Stack divs on top of each other at 1125px or less */
@media only screen and (max-width: 1125px) {
    .gen-form-wrap {
        flex-direction: column;
    }

    .gen-form-domain,
    .gen-form-uuid {
        width: 100%;
        margin-bottom: 20px;
    }
}

.button-placeholder {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
}

.button-placeholder button {
    margin: 0 10px; 
    border-radius: 10px;
    border: 2px solid #10E7C3;
    background-color: #252c39;
}

.button-placeholder button:hover {
    background-color: #1a202c
}

/* Stack buttons on top of each other at 600px or less */
@media only screen and (max-width: 600px) {
    .button-placeholder {
        flex-direction: column;
    }

    .button-placeholder button {
        margin: 10px 0; /* Adjust margin for stacked buttons */
        width: 80%; /* Adjust width for smaller screens */
    }
}



/* Generate Keys Wizard */

.genkey-wiz-wizard-step {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.1s ease, visibility 0s 0.1s, height 0s 0.1s;
}

.genkey-wiz-wizard-step.active {
    opacity: 1;
    visibility: visible;
    height: auto; /* Adjust height based on content */
    transition: opacity 0.1s ease, visibility 0s 0s, height 0s 0s;
}

.genkey-wiz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns */
    gap: 40px;
    padding: 20px;
    position: relative;
}

.genkey-wiz-div-btn {
    padding: 20px;
    border: 2px solid #10E7C3;
    border-radius: 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.genkey-wiz-next-btn {
    margin-top: 50px;   
}

.genkey-wiz-hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.genkey-wiz-center {
    grid-column: 1 / -1; /* Make it span all columns */
    justify-self: center; /* Center the div within the grid */
    transform: scale(1.1); /* Optionally scale up the selected item */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .genkey-wiz-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns for smaller screens */
    }
}

@media (max-width: 768px) {
    .genkey-wiz-grid {
        grid-template-columns: 1fr; /* One column for very small screens */
    }
}

.genkey-wiz-title {
    font-size: 22px;
}

.genkey-wiz-key-input-container {
    margin-top: 20px;
}



/* === View Keys */

.viewkey-search-wrap {
    padding: 0px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 2px solid #0091FF;
    background-color: #252c39;
}

.viewkey-search-wrap input {
    background-color: #252c39;
    color: #F7FAFC;
}

.viewkey-search-wrap form {
    padding: 0px;
    margin: 0px;
    display: flex;
}

.viewkey-search-bar {
    flex: 1;
    padding:10px;
    padding-left: 20px;
    margin: 0;
    font-size: 1.765rem;
    border-radius: 10px 0px 0px 10px;
}

.viewkey-search-button {
    padding:10px;
    margin: 0;
    font-size: 1.765rem;
    border-radius: 0px 10px 10px 0px;
}

/* Shrink search bar for smaller screens */
@media only screen and (max-width: 600px) {
    .viewkey-search-bar {
        padding:10px 5px;
        font-size: 1rem;
    }
    
    .viewkey-search-button {
        padding:0;
        font-size: 1rem;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.2) !important;
}

th {
    text-align: center;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 0px solid #10E7C3;
}

td:nth-child(3), td:nth-child(4), td:nth-child(5) {
    text-align: center;
}

.even {
    background-color: #2D3748; 
    font-size: 1.176rem;
}

.odd {
    background-color:#252c39;
    font-size: 1.176rem;
}

/* Add this media query for viewport width of 775px or less */
@media only screen and (max-width: 600px) {
    .table-container {
        overflow-x: scroll; /* Enable horizontal scrolling */
    }
}

/* if max domains/uuids exceeds the set amount */
.exceeds-max {
    background-color: #913333;
}

/* tooltip for the exceeds max icon */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #913333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #913333 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* === View Keys Pagination */

.viewkey-pagination-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: row;
    margin-bottom: 20px;
}

.viewkey-pagination, .viewkey-pagination-count {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.viewkey-pagination span, .viewkey-pagination-count span {
    margin-right: 10px;
}

.viewkey-pagination-count {
    margin-bottom: 5px;
}

.viewkey-pagination form {
    margin-right:20px;
}

.viewkey-pagination-block {
    display: block;
    padding-bottom: 10px;
    margin-top: 10px;
}

.viewkey-pagination a {
    padding: 5px 10px;
    margin: 5px;
    font-size: 1.3rem;
    font-weight: bold;
    border: 0px solid #F7FAFC;
    border-radius: 3px;
    background-color: #252c39;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.viewkey-pagination a.active {
    background-color: #32BAFF;
    color: #F7FAFC;
    border: 0px solid #32BAFF;
}

.viewkey-pagination a:hover {
    background-color: #32BAFF;
    color: #F7FAFC;
    border: 0px solid #32BAFF;
}

.page-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 20px;
}

.page-selector button {
    padding: 6px 10px 5px 10px;
    margin-left: 5px;
}

/* Fix pagination on smaller screens */
@media only screen and (max-width: 650px) {
    .viewkey-pagination {
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: flex-end;
        flex-direction: column;
    }
    .viewkey-pagination form, .viewkey-pagination-count span {
        margin-right: 0px;
    }
}
@media only screen and (max-width: 480px) {
    .viewkey-pagination a {
        padding: 5px 7px;
        margin: 5px 3px;
        font-size: 1rem;
    }
}
@media only screen and (max-width: 460px) {
    .page-selector {
       font-size: 1rem; 
       text-align: right;
    }
    .page-selector select {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    .page-selector button {
        font-size: 1.1rem;
        padding: 5px 7px;
    }
}


/* === View Keys Selectors */
.selectors-container {
    display: flex;
    
}

.selector-group {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

.selector-group label {
    font-size: 0.88rem;
}

.selector-group select, .selector-group button {
    margin-bottom: 10px; 
}

.selector-group > div {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.selector-group > div > button {
    padding: 6px 10px 5px 10px;
    margin-bottom: 10px
}

/* Stack divs on top of each other at 790px or less */
@media only screen and (max-width: 790px) {
    .selectors-container {
        flex-direction: column; 
    }
    .selector-group {
        margin-right: 0; 
        margin-bottom: 20px;
    }
}

/* Add this media query for viewport width of 420px or less */
@media only screen and (max-width: 420px) {
    .selector-group > div {
        flex-direction: column; 
        align-items: flex-start;
        gap: 0px;
    }
    .selector-group > div > button {
        margin-bottom: 10px; 
    }
}

/* === View Keys AJAX max domains/uuids */
.editable-text {
    cursor: pointer;
    /* padding-right: 80px; set by js on page now */
    display: inline-block; 
}

/* === View Keys Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content/Box */
.modal-content {
    background-color: #252c39;
    color: #F7FAFC;
    border-radius: 10px;
    margin: 15% auto;
    padding: 30px;
    border: 2px solid #0091FF;
    width: 80%;
    max-width: 300px;
    position: relative;
}

.modal-content input {
     width: 50%;
}

/* Close Button */
.close {
    color: #10E7C3;
    font-size: 1.765rem;
    font-weight: bold;
    position: absolute;
    top: 5px;
    right: 20px;
    cursor: pointer;
}


.close:hover,
.close:focus {
    color: #2EFAC8;
    text-decoration: none;
    cursor: pointer;
}


/* Modal styles */
.viewkeys-delete-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.viewkeys-delete-modal-content {
    background-color: #252c39;
    color: #F7FAFC;
    border-radius: 10px;
    margin: 15% auto;
    padding: 30px;
    border: 2px solid #0091FF;
    width: 80%;
    max-width: 250px;
    position: relative;
}

.viewkeys-delete-close {
    color: #10E7C3;
    font-size: 1.765rem;
    font-weight: bold;
    position: absolute;
    top: 5px;
    right: 20px;
    cursor: pointer;
}


.viewkeys-delete-close:hover,
.viewkeys-delete-close:focus {
   color: #2EFAC8;
    text-decoration: none;
    cursor: pointer;
}

.viewkeys-delete-modal-content button {
    margin: 10px;
    min-width: 70px;
}

/* === View Keys Single Key */

.singlekey-wrap {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    align-items: flex-start;
}

.singlekey-left,
.singlekey-right {
    flex: 1; 
    background-color: #252c39;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.singlekey-info {
    border-bottom: 2px solid #10E7C3;
    padding: 20px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.singlekey-left .singlekey-info:last-child,
.singlekey-right .singlekey-info:last-child {
    border-bottom: none;
}

.singlekey-left .singlekey-label {
    font-size: 1.176rem;
    font-weight: bold;
    flex: 1;
}

.singlekey-left .pointer, .singlekey-right .pointer {
    cursor: pointer;
}

.singlekey-left .singlekey-detail {
    font-size: 1.176rem;
    flex: 0;
    text-align: right;
}

.singlekey-right .singlekey-label {
    font-size: 1.176rem;
    font-weight: bold;
}

.singlekey-left .singlekey-detail, .singlekey-right .singlekey-detail {
    font-size: 1.176rem;
    text-align: right;
    padding-left: 20px;
    flex: 1;
}

.singlekey-date {
    font-size: 1rem;
}

/* Adjust for smaller screens */
@media only screen and (max-width: 1310px) {
    .singlekey-info {
        max-width: 100%;
    }
}
@media only screen and (max-width: 1060px) {
    .singlekey-wrap {
        flex-direction: column; 
    }
    .singlekey-left,
    .singlekey-right {
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        width: 70%;
    }
}
@media only screen and (max-width: 730px) {
    .singlekey-left,
    .singlekey-right {
        width: 100%;
    }
}
@media only screen and (max-width: 500px) {
    .singlekey-label {
        font-size: 0.80rem !important;
    }
    .singlekey-detail {
        font-size: 0.95rem !important;
    }
}

/* list of domains and uuids */
.singlekey-list-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.singlekey-domains, .singlekey-uuids {
   flex: 1; 
   border: 0px solid #10E7C3;
   margin: 50px;
   padding: 10px;
   min-width: 35%;
}

.singlekey-domains h2, .singlekey-uuids h2 {
   text-align: center;
}

.singlekey-domains ul, .singlekey-uuids ul {
    list-style-type: none;
    padding: 0px 50px;
}

.singlekey-domains li,.singlekey-uuids li {
    padding: 10px;
    border-bottom: 1px solid #10E7C3;
    margin-bottom: 5px;
    min-height: 26px;
}


/* Start fitting domain and uuid for smaller screens */
@media only screen and (max-width: 1600px) {
    .singlekey-domains ul, .singlekey-uuids ul {
        padding: 0px;
    }
}

/* Stack divs for smaller screens */
@media only screen and (max-width: 1370px) {
    .singlekey-list-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .singlekey-domains, .singlekey-uuids {
        margin: auto;
        width: 80%;
    }
   .singlekey-domains li, .singlekey-uuids li, .singlekey-domains p, .singlekey-uuids p {
       margin: auto;
       max-width: 600px;
   } 
   .singlekey-domains ul, .singlekey-uuids ul {
        padding-left: 0;
        
    }
}
@media only screen and (max-width: 640px) {
    .singlekey-domains, .singlekey-uuids {
        width: 90%;
    }
    .singlekey-domains ul, .singlekey-uuids ul {
        font-size: 0.9rem;
    }
}
@media only screen and (max-width: 500px) {
    .singlekey-list-wrap input {
        width: 160px;
    }
    .singlekey-form-add {
        margin: auto !important;
    }
    .singlekey-domains, .singlekey-uuids {
       padding: 0px;
       width: 97%;
    }
    .singlekey-date {
        font-size: 0.8rem;
    }
    
}
@media only screen and (max-width: 380px) {
    .singlekey-date {
        font-size: 0.7rem;
    }
    
}

.singlekey-editable-text {
    cursor: pointer;
}

/* Add new domain/uuid to the single key page */
.singlekey-form-add {
    position: relative;
    width: fit-content;
    margin: auto;
    margin-top: 20px;
}

/* === Auth Key */
.authkey-wrap {
    display: flex;
}

.authkey-info {
    flex: 1;
    margin-right: 20px;
}

.authkey-key {
    padding: 20px;
    border: 0px solid #10E7C3;
    border-radius: 5px;
    height: 220px;
    min-width: 450px;
    background-color: #252c39;
    display: flex; /* Add this line */
    flex-direction: column; /* Add this line */
    justify-content: center; /* Add this line */
    align-items: center; /* Add this line */    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.authkey-key p {
    margin-bottom: 8px;
}

/* Stack divs on top of each other at 1200px or less */
@media only screen and (max-width: 1200px) {
    .authkey-wrap {
        flex-direction: column;
    }
    .authkey-info {
        margin-right: 0;
    }
    .authkey-key {
        margin-top: 20px;
    }
}

/* set authkey box for smaller screens */
@media only screen and (max-width: 635px) {
    .authkey-key {
        min-width: 90%;
    }
}
@media only screen and (max-width: 480px) {
    .authkey {
        padding: 0 !important;
        padding-left: 5px !important;
        margin: 0 !important;
    }
    .authkey button {
        margin-top: 0 !important;
        width: inherit !important;
    }
    .authkey-gen {
       margin-top: 20px !important;
    }
}

.authkey-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.authkey-modal-content {
    background-color: #252c39;
    color: #F7FAFC;
    border-radius: 10px;
    margin: 15% auto;
    padding: 30px;
    border: 2px solid #0091FF;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.authkey-modal-content-yes {
   background-color: #E63946;  
}

.authkey-modal-content-yes:hover {
    background-color: #FF4D6D;
}

.obfuscated {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

.authkey {
    margin: auto;
    display: inline-flex;
    align-items: center;
    padding: 0px 0px 0px 20px;
    border: 1px solid #0091FF;
    border-radius:5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.authkey button {
    margin-left: 20px;
    margin-right: 0;
    font-size: 0.8rem;
    border-radius: 0px;
    height: auto;
    width: 80px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2) !important;
}

.authkey-gen {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.authkey-gen button {
     background-color: #E63946;
}

.authkey-gen button:hover {
     background-color: #FF4D6D;
}

/* === Settings */
.settings-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.settings-container input {
    width: 70%;
}

.settings-profile, .settings-password {
    width: 48%;
}

.settings-profile form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.settings-profile form div{
    display: flex;
    align-items: center;
}

.settings-container button {
    width: auto;
    white-space: nowrap;
}

.settings-plan {
     margin-top: 50px;
     margin-left: 0px;
     padding: 20px;
     padding-left: 0px;
}

@media only screen and (max-width: 850px) {
    .settings-container {
        flex-direction: column;
        align-items: center;
    }

    .settings-profile, .settings-password {
        width: 100%;
    }

}

/* cancel plan */
.cancel-info {
    display: inline-block;
    background-color: #252c39;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0px;
}

.cancel-buttons {
    margin: 20px 0px;
}

.cancel-buttons button {
    margin: 20px;
}

.cancel-sub-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(37, 44, 57, 0.7);
}

.cancel-sub-modal-content {
    background-color: #252c39;
    margin: 15% auto;
    padding: 40px;
    border: 4px solid #FF4D4D;
    max-width: 680px;
    border-radius: 10px;
}

.cancel-sub-modal-buttons button {
    margin: 10px;
}


/* center cancel modal buttons on small screens */
@media only screen and (max-width: 800px) {
    .cancel-sub-modal-buttons {
        display: flex; 
        flex-direction: column;
        align-items: center; 
        justify-content: center; 
    }
}

/* change plan modal */
.change-plan-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(37, 44, 57, 0.7);
}

.change-plan-modal-content {
    background-color: #252c39;
    margin: 15% auto;
    padding: 40px;
    border: 4px solid #10E7C3;
    width: 400px;
    border-radius: 10px;
}

.change-plan-modal-buttons {
    display: flex;
    justify-content: center;
}

.change-plan-modal button {
    margin: 10px;
    width: 160px;
}


/* Responsive adjustments for smaller screens */
@media only screen and (max-width: 550px) {
    .change-plan-modal-content {
        width: 80%; 
        padding: 20px; 
    }

    .change-plan-modal button {
        width: 100%;
        box-sizing: border-box; 
        margin: 10px 0; 
    }

    .change-plan-modal-buttons {
        flex-direction: column; /* Stack buttons vertically */
    }
}


/* change plan page */
.change-plan-container {
    display: flex;
    justify-content: space-between;
}

.change-plan-item {
    flex: 1;
    padding: 0 20px; 
}

/* Stack divs on smaller screens */
@media only screen and (max-width: 1210px) {
    .change-plan-container {
        flex-direction: column;
        align-items: center;
    }

    .change-plan-item {
        width: 100%; /* Take full width */
        padding: 20px;
    }
}

.change-plan-picker-wrap {
    max-width: 62%;
    margin: auto;
    background-color: #252c39;
    border-radius:5px;
    padding: 20px;
    width: auto;
    text-align:center;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.change-plan-picker {
    width: 49%;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding:0;
}

.change-plan-picker select {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.change-plan-picker input {
    width: 80%;
    margin: 0;
}

.change-plan-picker p {
   font-size: 1.2rem;
   font-weight: bold; 
   margin:0;
}

/* Stack divs on smaller screens */
@media only screen and (max-width: 1500px) {
    .change-plan-picker-wrap {
        max-width: 90%;
        margin-right: 10px;
    }
}

/* Stack divs on smaller screens */
@media only screen and (max-width: 630px) {
    .change-plan-picker-wrap {
        max-width: 100%;
        margin: 0;
        padding: 10px;
        margin-bottom: 20px;
    }
    .change-plan-picker {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .change-plan-picker select {
        width: 80%; 
        margin: 10px auto; 
    }
}

.settings-password input#current_password, .settings-password input#new_password, .settings-password input#confirm_new_password {
    width: 65%;
    font-size: 1.3rem;
    padding: 5px 20px;
    border-radius: 5px 0px 0px 5px;
    margin-bottom: 7px;
}

.current-password-view, .new-password-view, .confirm-new-password-view {
    margin-left: 0px;
    font-size: 1.3rem;
    padding: 8px;
    text-align:center;
    color: #10E7C3;
    background-color: #252c39;
    border-radius: 0px 5px 5px 0px;
    border-left: 1px solid #10E7C3;
}

/* === Bulk Delete === */
.del-button-wrap {
    display: flex;
}

.del-button-container {
    flex: 1;
    border: 2px solid #FF4D4D;
    border-radius: 10px;
    padding: 10px 40px 25px 40px;
    margin: 10px;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    background-color: #252c39;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

.del-button-container button {
    padding: 10px;
    width: 80%;
    margin: 0 auto;
    background-color: #E63946; 
    border: none;
}

.del-button-container button:hover {
    background-color: #FF4D6D;
}

.del-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(37, 44, 57, 0.7);
}

.del-modal-content {
    background-color: #252c39;
    margin: 15% auto;
    max-width: 300px;
    padding: 40px;
    border: 4px solid #FF4D4D;
    border-radius: 10px;
}

.del-modal-content input {
    margin-left: 5px; 
    margin-bottom:10px; 
    margin-top: 20px; 
    border: 2px solid #FF4D4D; 
}

@media only screen and (max-width: 385px) {
    .del-modal-content input {
        max-width: 220px;
    }
}

.del-modal-content button {
    background-color: #E63946;
    color: white;
    padding: 10px 0px;
    margin: auto;
    margin-bottom: 20px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.del-modal-content button:hover {
    background-color: #FF4D6D;
}

/* === Tools */
.tools-wrap {
    border-top: 4px solid #10E7C3;
    margin: auto;
    padding: 20px;
}

.tools-encode {
    flex: 1;
    margin: 40px;
    padding-right: 15px;
    border-right: 4px dashed #252c39;
}

.tools-decode {
    flex: 1;
    margin: 40px;
}

.tools-textarea {
    width: 90%;
    height: 300px;
}

@media screen and (max-width: 1210px) {
   .tools-wrap {
        padding: 10px;
    }
    .tools-encode {
        margin: 10px;
        padding-right: 10px;
        border-right: 4px dashed #252c39;
    }
    .tools-decode {
        margin: 10px;
    }
}
@media screen and (max-width: 800px) {
    .tools-wrap > div {
        display: flex;
        flex-direction: column;
    }
    .tools-encode, .tools-decode {
        margin: 10px;
        padding: 0;
        border-right: none;
    }
    .tools-decode {
        margin-top: 20px;
        border-top: 4px dashed #252c39;
    }
    .tools-textarea {
        width: 100%;
        height: 200px;
    }
}



/* === Import */

.import-form {
    display: inline-block;
    margin: 40px 0px 10px 0px; 
    padding: 40px; 
    border: 2px solid #10E7C3;
    border-radius: 10px;
    text-align: center;
}

.import-form form {
    margin: auto; 
}

.import-upload-select {
    margin-left: 10px;
    cursor: pointer; 
}

.custom-file-upload {
  border: 1px solid #10E7C3;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 15px;
  margin-left:20px;
  margin-right: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
}

.custom-file-upload:hover {
  background-color: #10E7C3;
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.2) !important;
    border: none;
}

.table-responsive th {
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #10E7C3;
}

@media screen and (max-width: 1360px) {
    .table-responsive th, .table-responsive td {
        padding: 5px;
        font-size: 14px;
    }
}
@media screen and (max-width: 680px) {
    .import-form {
        padding: 20px; 
    }
}
@media screen and (max-width: 630px) {
    .table-responsive th, .table-responsive td {
        padding: 5px;
        font-size: 12px;
    }
    .import-form-btn {
       margin-top: 10px; 
    }

}
@media screen and (max-width: 580px) {
    .import-upload-select {
        margin-top: 10px;
    }
}
@media screen and (max-width: 470px) {
    .custom-file-upload {
        margin: 5px;
    }
}

/* === Renew */
.renew-content {
    display: flex;
    
}

.renew-profile, .renew-plan {
    margin: 10px;
    max-width: 300px;
}

.renew-plan {
    border-left: 3px solid #252c39;
    padding-left: 20px;
}

/* Stack divs on top of each other at 450px or less */
@media only screen and (max-width: 480px) {
    .renew-content {
        flex-direction: column; 
    }

    .renew-profile, .renew-plan {
        width: 100%;
        border-left: 0px solid #252c39;
        padding-left: 0px;
    }
}

/* === Importer */
.custom-file-upload {
  border: 1px solid #10E7C3;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 15px;
  margin-left:20px;
  margin-right: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: bold;
}

.custom-file-upload:hover {
  background-color: #10E7C3;
}


/* ----- FOOTER ----- */

.footer-wrap {
    margin-top: 100px;
    max-width: 1850px;
    margin-left: max(20px, calc((100% - 1850px) / 2));
    margin-right: max(20px, calc((100% - 1850px) / 2));
    padding-left: min(20px, calc((100% - 1850px) / 2));
    padding-right: min(20px, calc((100% - 1850px) / 2));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px;
}

.footer-item h2 {
    font-size: 1.765rem;
    padding-bottom: 5px;
    margin-bottom: 0px;
}

.footer-item {
    flex: 1;
    background-color: #2D3748; 
    border: 1px solid #252c39;
    border-radius: 10px 10px 0px 0px;
    padding: 40px;
    
}

/* === Footer menus */
.footer-item ul {
    list-style-type: none;
    margin-top: 0px;
}

.footer-item li {
    font-size: 0.94rem;
    padding: 5px 0px;
}

.footer-item li a {
    text-decoration: none;
    color: #0091FF;
    font-family: Prompt, sans-serif;
}

.footer-item li a:hover {
    color: #32BAFF;
}

/* === Copyright */
.bk-copyright {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border-top: 2px solid #10E7C3;
}


/* ============= BEGIN MEDIA QUERIES ============= */

/* Dashboard sidebar */
@media only screen and (max-width: 1720px) {
    /* dashboard menu for mobile */
    .dashboard-sidebar ul {
        margin-right: 20px;
        padding: 10px;
    }
    .dashboard-sidebar a {
        font-size: 0.8em; 
    }
    .key-info {
        padding-left: 0px;
        padding-right: 40px;
        margin-left: 10px;
        margin-right: 10px;
        border: 0;
    }
    .key-info h3 {
        border-top: 2px solid #10E7C3;
    }
}
/* hide dashboard sidebar on small screens */
@media only screen and (max-width: 1210px) {
    /* dashboard menu for mobile */
    .dashboard-sidebar {
        display: none;
    }
    .dashboard-content {
        margin: auto;
        padding-left: 20px;
        padding-right: 20px;
        
    }
    .dashboard-sidebar-mobile, .key-info-mobile {
        display: flex;
    }
    .dashboard-sidebar-mobile ul {
        margin: 20px;
    }
}

/* Stack footer on mobile */
@media only screen and (max-width: 940px) {

    .footer-item {
        border-radius: 10px;
        margin-bottom: 20px;
        flex: 1 0 100%; /* This makes #left take 100% width */ 
        padding: 40px;
        box-sizing: border-box;
    }
    
    #center, #right {
       flex: 1 0 40%;
       margin: 20px;
       margin-bottom: 50px;
    }
}

/* Stack footer on mobile */
@media only screen and (max-width: 680px) {
    .footer-wrap {
        flex-direction: column; /* Stack items vertically */
    }

    .footer-item {
        flex: 1 0 100%; /* Take full width */
        border-radius: 10px;
        margin-bottom: 20px;
        padding: 40px;
        box-sizing: border-box;
    }
    
    #center, #right {
       margin: 0px;
       margin-bottom: 20px;
    }

}
@media only screen and (max-width: 400px) {
    .footer-item {
        margin-right: 0px;
        padding: 40px 20px 40px 40px;
    }
}

/* Stack bulk delete keys buttons on mobile */
@media only screen and (max-width: 850px) {
    .del-button-wrap {
        flex-direction: column; /* Stack items vertically */
    }
    .del-button-container h3 {
        margin: 5px;
        padding: 5px;
    }
    .del-button-container button {
        padding: 5px;
    }

}


