.whitelist-form-heading-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.whitelist-form-heading-container .button {
    height: min-content;
    align-self: center;
    margin-left: 15px;
}

.whitelist-form-heading-container form {
    align-self: center;
    margin-left: 20px;
}

.whitelist-form-characters-container {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(5, 1fr);
}

.whitelist-banner-close {
	margin-top: -2px;
	float: right;
	
	font-size: 14px;
}


/* Whitelist */
.whitelistcharaktere {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.wl_alert {
    position: fixed;
    bottom: 70px;
    right: 30px;
    background: linear-gradient(135deg, #3a0d0d, #7a1e1e);
    color: #fff5f5;
    padding: 15px 15px;
    border: 3px solid #ff4c4c;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    z-index: 9999;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(150%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
