.autonotify-header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.autonotify-header img {
    width: 400px;
    margin-top: 40px;
}


.autonotify-body {
    background: white;
    margin-top: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 40px;
    width: 700px;
}

.autonotify_token {
    border-radius: 20px;
    width: 300px;
}

.autonotify_input_div {
    display: block;
}

.autonotify_validate_token {
    border-radius: 4px;
    padding: 7px;
    color: white;
    font-weight: bold;
    background: #635dff;
    border: 0;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
    transition: transform ease 0.2s;
}

.autonotify_validate_token:hover {
    transform: scale(1.1);
}

.autonotify_validate_token:active {
    transform: scale(1.0);
}

.autonotify_title {
    font-weight: bold;
    font-size: 30px;
}

.div_autonotify_title {
    margin-bottom: 25px;
    display: block;
    border-bottom: 1px solid #595959;
    height: 40px;
}

.autonotify_subtitle {
    float: right;
}

.autonotify_loading {
    display: none;
    margin-left: 7px;
    width: 20px;
}

.autonotify_token_label {
    color: rgb(24, 49, 83);
    font-weight: bold;
    font-size: 17px;
}

.autonotify_token_saved {
    padding: 10px;
    color: white;
    font-weight: bold;
    background-color: #00ff14;
    border-radius: 5px;
    right: 20px;
    bottom: 50px;
    position: fixed;
}

.autonotify_token_failed {
    padding: 10px;
    color: white;
    font-weight: bold;
    background-color: #ca2b2b;
    border-radius: 5px;
    right: 20px;
    bottom: 50px;
    position: fixed;   
}

.autonotify_token_saved, .autonotify_token_failed {
    display: none;
}



.autonotify_edit_token {
    color: #f4f4f4;
    font-size: 12px;
    font-weight: bold;
    border: 0px;
    padding: 5px;
    background-color: #505050;
    margin-top: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.autonotify_edit_token:hover {
    transform: scale(1.1);
}

.autonotify_edit_token:active {
    transform: scale(0.9);
}

.autonotify_body_inactive, .autonotify_body_active {
    display: none;
}

.autonotifyboxicon {
    fill: white;
    width: 15px;
}


.autonotify-icon {
    width: 10px;
}

.tokencheckedicon {
    fill: #00ff14;
    width: 17px;
}


.autonotify_edit_token svg {
    fill: #f4f4f4;
}