/*****************************************/
/* Styles specifiques a la page Backups   */
/* (fonts, couleurs et layout communs :   */
/* voir base.css)                        */
/*****************************************/

h1 {
    font-size: 50px;
}



/**************/
/* BACKGROUND */
/**************/

body {
    padding: 60px;
    padding-bottom: 0px;
    height: calc(100vh - 80px);
}

.background-img {
    opacity: 0.5;
}



/**************/
/* 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;
}



/****************/
/* RESPONSIVE   */
/****************/

@media (max-width: 900px) {
    body {
        padding: 30px;
        padding-top: 56px;
    }

    h1 {
        font-size: 40px;
    }

    .div-backups {
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
    }
}

@media (max-width: 700px) {
    body {
        padding: 20px;
        padding-top: 50px;
        height: auto;
    }

    h1 {
        font-size: 30px;
        margin: 10px;
    }

    .search-container {
        width: 85%;
        left: 0;
        right: 0;
    }

    .search-container input {
        width: 100%;
    }

    .div-backups {
        padding: 12px;
        overflow-x: auto;
    }

    .tab-backups {
        font-size: 14px;
    }

    .tab-backups th,
    .tab-backups td {
        padding: 4px;
    }
}

