/***************/
/*** IMPORTS ***/
/***************/

@font-face {
    font-family: 'GlacialIndifference Regular';
    src: url('fonts/glacial-indifference/GlacialIndifference-Regular.otf') format('truetype');
}
@font-face {
    font-family: 'GlacialIndifference Italic';
    src: url('fonts/glacial-indifference/GlacialIndifference-Italic.otf') format('truetype');
}



/****************/
/*** WRITINGS ***/
/****************/

h1 {
    display: block;
    margin: 20px;
    font-family: 'GlacialIndifference Regular', sans-serif;
    font-size: 50px;
    font-weight: 100;
    color : #fff;
    text-align: center;
}


label {

}

h2 {
    position: relative;
    text-align: center;
    color: #fff;
    font-weight: 300;
    font-family: 'GlacialIndifference Regular', sans-serif;
    font-size: 25px;
    display: block;

}

p {
    font-family: 'GlacialIndifference Regular', sans-serif;
    text-align: justify;
    color: #fff;
    opacity: 0.5;
    font-weight: 100;
    font-size: 20px;
    text-align: center;
}



/**************/
/* BACKGROUND */
/**************/

body {
    background-color: #111;
    margin: 0;
    padding: 60px;
    padding-bottom: 0px;
    height: calc(100vh - 80px);
}

.layer_wrapper {
    z-index:-1;
    overflow: hidden;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;

}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    object-fit: cover;
}



/**************/
/* BACKUP TAB */
/**************/
.div-backups {
    display: block;
    position: relative;
    margin: 20px auto;
    padding: 40px;
    width: 95%;
    background-color: rgba(53, 53, 53, 0.5);
    border-radius: 20px;
    font-family: 'GlacialIndifference Regular', sans-serif;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.tab-backups {
    border-collapse: collapse;
    width: 100%;
    border-radius: 20px;
}

.tab-backups th {
    border: 1px solid #dddddd;
    padding: 5px;
    background-color: rgba(23, 23, 23, 0.8);
    font-family: 'GlacialIndifference Regular', sans-serif;
    font-size: 25px;
    font-weight: 300;
}

.tab-backups td {
    border: 1px solid #dddddd;
    padding: 5px;
    font-family: 'GlacialIndifference Regular', sans-serif; 
    font-weight: 100;
}

.tab-backups .backup-item:hover {
    background-color: rgba(23, 23, 23);
    border: none;
    /*transform: scale(1.05);
    transition: transform 0.3s ease;*/
}



/*************/
/* TAB ITEMS */
/*************/

.site-status-dot {
    display: inline-block;
    margin: auto;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background: grey;
}




/************/
/* SEARCHER */
/************/

.search-container-rel {
    position: relative;
    width: 100%;
    height: 100px;
}

.search-container {
    display: block;
    position: absolute;
    width: 300px;
    left: -999px;
    right: -999px;
    margin: 20px auto;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background-color: rgba(53, 53, 53, 0.5);
    padding: 10px;
    border-radius: 20px;
}

.search-container input {
    display: inline-block;
    position: relative;
    width: 200px;
    padding-bottom: 5px;
    outline: none; 
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 2px;
    background-color: transparent;
    font-family: 'GlacialIndifference Regular', sans-serif;
    color: white;
}

.search-container input:focus {
    border-bottom-color: #bd8306;
}

