.copy-full-url {
    display: flex;
    align-items: center;
    padding: 15px 20px;
	line-height: 16px;
	border-top: 1px solid #f2f2f2;
}

.copy-full-url:hover  {
    cursor: pointer;
    color: #438bca;
    text-decoration: underline;
}

.copy-full-url img {
    width: 15px;
    height: auto;
    margin-right: 8px;
}

.ck-spinner:after,
.ck-spinner-large:after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #000;
  animation: spinner .6s linear infinite;
}

.ck-spinner:after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-left: -6px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-top-color: #ccc;
}


#login-modal.modal {
    max-width: 400px;
    padding: 30px 50px 30px;
}

#login-modal .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#login-modal .header-container h2 {
    font-size: 18px;
    margin-top: 10px; /* Adjust as needed */
}

#login-modal .header-container img {
    height: 48px;
    width: 48px;
}

#login-modal .login-remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

#login-modal .remember-me-checkbox {
    display: flex;
    align-items: center; /* Vertically aligns checkbox and label */
}

#login-modal .remember-me-checkbox label {
    margin-left: 5px; /* Adds spacing between the checkbox and the label */
}

#login-modal .login-btn {
    background-color: #e5e5e5;
    display: inline-block;
    color: #333;
    font-weight: 700;
    font-size: 16px;
    padding: 7px 10px;
    border-radius: 7px;
    margin: 0;
    border: none;
    position: relative;
}

#login-modal .input, 
#login-modal input[type=password], 
#login-modal input[type=text] {
    font-size: 22px;
    line-height: 1.33333333;
    width: 100%;
    padding: 3px 6px;
    margin: 0 6px 16px 0;
    min-height: 40px;
    max-height: none;
    box-shadow: 0 0 0 transparent;
    border-radius: 4px;
    border: 1px solid #8c8f94;
    background-color: #fff;
    color: #2c3338;
}

#login-modal .lost-pw {
    text-align: center;
    color: #888;
    font-size: 12px;
    display: block;
    margin-top: 25px;
}

#login-modal .error-notice a {
    color: #438bca;
    text-decoration: underline;
}

#login-modal .error-notice {
    color: #333;
    border-left-color: #d63638;
    border-left: 4px solid #d63638;
    padding: 8px 12px;
    margin: 15px 0;
    background: #f2f2f2;
    border-radius: 5px;
    font-size: 12px;
}

#login-modal .os-pwd {
    position: relative;
}

#login-modal .os-pwd .wp-hide-pw {
    background: 0 0;
    border: 1px solid transparent;
    box-shadow: none;
    font-size: 14px;
    line-height: 2;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 40px;
    min-height: 40px;
    margin: 0;
    padding: 5px 9px;
    position: absolute;
    right: 0;
    top: 0;
}

#login-modal .password-toggle-icon {
    display: inline-block;
    width: 20px; /* Adjust the size as needed */
    height: 20px; /* Adjust the size as needed */
    background-size: cover;
    vertical-align: middle;
}

#login-modal .password-show {
    background-image: url('https://officesnapshots.com/wp-content/plugins/os-shared-features/img/show.svg');
}

#login-modal .password-hide {
    background-image: url('https://officesnapshots.com/wp-content/plugins/os-shared-features/img/hide.svg');
}

#login-modal #sign-in-with-google-container::before {
    content: 'OR';
    position: absolute;
    top: -30px;
    left: calc(50% - 10px);
    padding: 0 5px;
}

button.classify-image-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 14px 0 14px 10px;
    background: #fff;
    color: #333;
    font-size: 14px;
    line-height: 24px;
    width: 85px;
    height: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Disable Button Styling */
button.classify-image-button:disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

/* Centering the spinner inside the button */
button.classify-image-button .ck-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
}

.ck-spinner.dark-spinner:after {
    border: 2px solid #777;
    border-top-color: #f0f0f0;
}
