/*
** EPITECH PROJECT, 2023
** animate_spritesheet
** File description:
** stylesheet.css
*/

body {
    margin: 0;
    padding: 0;
    background-color: aliceblue;
}

#control_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20%;
    color: white;
    background-color: #1a1a1a;
    border-bottom: 1px solid #000000;
}

.animation_render_section {
    margin: 1%;
}

.animation_render_section_header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 98%;
    margin: 1%;
    border: #000000 1px solid;
    background-color: dodgerblue;
}

#control_section_header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20%;
    border-bottom: 1px solid aliceblue;
}

.animation_column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 98%;
    margin: 1%;
    border: #000000 1px solid;
}

.animation_row_header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid aliceblue;
}

.animation_row_body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 1%;
    width: 100%;
}

.animation_row_images {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 1%;
}

.animation_preview_body {
    align-self: flex-end;
}
