/*
    This file won't be overwritten by updates, so you can put custom code here.
*/

/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Home tools section */
.home-tools {
    padding: 20px 0;
    text-align: center;
}

.home-tools .text-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.home-tools .loadable {
    display: inline-block;
    padding: 10px 20px;
    margin-left: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.home-tools .loadable:hover {
    background-color: #0056b3;
}

/* Loadable overlay */
.loadable-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loadable-overlay .icon {
    animation: spin 1s linear infinite;
}

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

/* Customization start -- do not edit this section */
/* bb7f17a475d5e1fd67cfc824ba9ee4e8 */ header { background-color: #fefefe; }
/* c9bf3aa6ee60d690b58d5cf8db584cbd */ header .nav-toggle a.toggle div { background-color: #405060; }
/* e6469258b525ed85ceaa7d723730d629 */ header nav ul li a { color: #405060; }
/* b3403bf62c056740eaa2729671bf6598 */ header nav ul li a:focus, header nav ul li a:hover { color: #2aabe0; }
/* Customization end */