#wpcontent {
    padding-left: 0;
}

#wpbody-content {
    background-color: #1e1e1e;
    min-height: calc(100vh - var(--wp-admin--admin-bar--height));
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
}

#wpfooter,
#footer-upgrade,
.notice {
    display: none;
}

#cybreed-logo {
    background-color: #000000;
    margin: 0 auto;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    width: 247px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cybreed-logo img {
    padding: 20px 0;
}

.cybreed-dashboard-wrapper {
    background-image: url(../images/BG-IMG.png);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 2px 4px 0px #000000;
    max-width: 700px;
    min-height: 730px;
    padding: 0 32px 62.5px;
    border-radius: 40px;
    position: relative;
    transition: filter 0.3s ease;
    margin: 30px 0;
}

.cybreed-dashboard-inner-wrapper.blur {
    filter: blur(8px);
    pointer-events: none;
}

.cybreed-dashboard-header {
    background: linear-gradient(92.35deg, #79787b -3.35%, #fff 48.28%, #79787b 104.9%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Sora, sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 71.04px;
    text-align: center;
    margin: 0;
    padding-bottom: 10px;
    padding: 22.5px 100.5px 0;
}

.cybreed-dashboard-subheader {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 23px;
    color: #ffffff;
    padding-bottom: 22.5px;
    text-align: center;
}

.cybreed-auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 20px auto;
}

.settings-panel .cybreed-auth-container {
    display: block;
}

.cybreed-auth-card {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0px 4px 8.9px 0px #00000026;
}

.cybreed-auth-card h3 {
    color: #00ff7f;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    font-family: "Space Grotesk", monospace;
    margin-bottom: 1rem;
}

.cybreed-auth-card p {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: .875rem;
    line-height: 1.25rem;
}

.cybreed-button {
    display: inline-block;
    padding: 12px 24px;
    background: #00ff7f;
    color: #000000;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cybreed-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.4);
}

.cybreed-login-form {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.97);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #252525;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 90%;
    transition: .5s ease-in-out all;
}

.cybreed-login-form.error-cybreed {
    border-color: #ef4444;
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translate(-50%, -50%) translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate(-50%, -50%) translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate(-50%, -50%) translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate(-50%, -50%) translate3d(4px, 0, 0);
    }
}

.cybreed-login-form.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cybreed-login-form h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}

.cybreed-login-form p {
    font-family: 'Space Mono', sans-serif;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1em;
    line-height: 1.5;
}

.cybreed-login-form a {
    color: #00ff7f;
}

.cybreed-login-form label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.cybreed-login-form input[type="email"],
.cybreed-login-form input[type="password"] {
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #000000;
    height: 48px;
    padding: 16px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 16px;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition-duration: .2s;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    margin-bottom: 20px;
}

.cybreed-login-form input[type="email"]:focus,
.cybreed-login-form input[type="password"]:focus {
    border-color: #00ff7f;
    box-shadow: 0 0 0 2px rgba(0, 255, 127, 0.2);
    outline: none;
}

.cybreed-login-form input[type="submit"] {
    width: 100%;
    background: #00ff7f;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cybreed-login-form input[type="submit"]:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.4);
}

.cybreed-login-form .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 26px;
    line-height: auto;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.cybreed-login-form .close-button:hover {
    color: #00ff7f;
}

.cybreed-login-form .sr-only {
    display: none;
}

.cybreed-dashboard-card {
    text-align: center;
}

.cybreed-dashboard-card .cybreed-dashboard-header {
    font-size: 42px;
    line-height: 62px;
}

.cybreed-dashboard-card .cybreed-dashboard-subheader {
    font-size: 16px;
}

.login-message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

.login-message.success-cybreed {
    background-color: rgba(0, 255, 127, 0.1);
    color: #00ff7f;
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.login-message.error-cybreed {
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.cybreed-login-form input[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cybreed-toast-container {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cybreed-toast {
    color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    backdrop-filter: blur(1.5px);
    border: 1px solid;
}

.cybreed-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.cybreed-toast.success-cybreed {
    background: color-mix(in srgb,#00ff801a,transparent 5%);
    box-shadow: 0px 4px 8px 0px color-mix(in srgb,#00ff7f,transparent 96%);
    color: #00ff7f;
    border-color:#00ff7f;
    border-left-width: 1px;
    padding: 12px;
}

.cybreed-toast.error-cybreed {
    background: color-mix(in srgb,#f045451a,transparent 5%);
    box-shadow: 0px 4px 8px 0px color-mix(in srgb,#ef4444,transparent 96%);
    color: #ef4444;
    border-color:#ef4444;
    border-left-width: 1px;
    padding: 12px;
}

.cybreed-toast-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.cybreed-toast-content {
    flex-grow: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding-right: 0.5rem;
}

.cybreed-toast-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    font-size: 1.25rem;
    opacity: 0.7;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    transition: .25s all ease-in-out;
}

.cybreed-toast-close:hover {
    opacity: 1;
    background-color: #000000;
}

.join-us {
    margin-top: 40px;
}

.join-us h2 {
    color: #fff;
    text-align: center;
}

.join-us .comunity-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.join-us .comunity-wrapper > div:not(:last-child) {
    margin-right: 15px;
}

.join-us .comunity-wrapper > div svg {
    width: 32px;
    height: 32px;
}

.join-us .comunity-wrapper > div svg path {
    fill: #FFF;
    transition: .25s all ease-in-out;
}

.join-us .comunity-wrapper > div:hover svg path {
    fill: #00ff7f;
}

/* Display settings fields */
.display-specific,
.display-exclude,
.display-single {
    display: none;
}

/* Checkbox list styling */
.cybreed-checkbox-list {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    max-height: 250px;
    overflow-y: auto;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cybreed-checkbox-list::-webkit-scrollbar {
    width: 8px;
}

.cybreed-checkbox-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.cybreed-checkbox-list::-webkit-scrollbar-thumb {
    background: #00ff7f;
    border-radius: 4px;
}

.cybreed-checkbox-list::-webkit-scrollbar-thumb:hover {
    background: #00cc66;
}

.cybreed-checkbox-item {
    display: block;
    padding: 10px 15px;
    margin-bottom: 8px;
    color: #ffffff;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: "Space Grotesk", monospace;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.cybreed-checkbox-item:hover {
    background-color: rgba(0, 255, 127, 0.1);
    border-color: rgba(0, 255, 127, 0.3);
}

.cybreed-checkbox-item:last-child {
    margin-bottom: 0;
}

.cybreed-checkbox-item input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    cursor: pointer;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #00ff7f;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.cybreed-checkbox-item input[type="checkbox"]:checked {
    background-color: #00ff7f;
}

.cybreed-checkbox-item input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-weight: bold;
    font-size: 14px;
}

.cybreed-checkbox-item span {
    vertical-align: middle;
}

/* Select All/Clear All buttons */
.cybreed-checkbox-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cybreed-select-all,
.cybreed-clear-all {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-family: "Space Grotesk", monospace;
    transition: all 0.2s ease;
}

.cybreed-select-all:hover,
.cybreed-clear-all:hover {
    background-color: rgba(0, 255, 127, 0.2);
    border-color: #00ff7f;
    color: #00ff7f;
}

/* Ensure select boxes in settings are properly styled */
.cybreed-settings-form select[multiple] {
    min-height: 120px;
}

.cybreed-settings-form h3 {
    color: #00ff7f;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    font-family: "Space Grotesk", monospace;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.cybreed-settings-form h3:first-child {
    margin-top: 0;
}