*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
    'Helvetica Neue', sans-serif;
}

:root
{
    --color--light: #ffff;
    --color--light--two: #dddddd;
    --color--light--three: #cccccc;
    --color--dark: #222;
    --color--dark--light: #444;
    --color--blue: #0470d6;
    --color--blue--dark: #0561b8;
}

.container_main
{
    width: 100%;
    height: 100vh;
    margin: auto;
    display: grid;
    background-color: var(--color--light--two);
    grid-template-columns: 200px 1fr;
    padding-bottom: 50px;
}

.container_aside
{
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: var(--color--light);
    padding: 20px 0;
}

.container_content_main
{
    width: 100%;
    height: auto;
    padding: 0px 20px;
}

.container_title_form_search
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.container_form_search_button_add
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.form_search
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: start;
    align-items: center;
}

.input_search
{
    width: 400px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    border-radius: 10px 0px 0px 10px;
    outline: none;
}

.button_search
{
    padding: 10px;
    border-radius: 0px 10px 10px 0px;
    border: none;
    background-color: var(--color--blue);
    color: var(--color--light);
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.button_search:hover
{
    background-color: var(--color--blue--dark);
}

.container_list_aside
{
    width: 100%;
    height: auto;
    margin: auto;
    list-style: none;
    padding: 20px 0;
}

.image_logo
{
    width: 150px;
    display: grid;
    place-items: center;
    margin: auto;
}

.item_aside
{
    margin: 10px 0;
}

.link_aside
{
    width: 90%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color--dark);
    padding: 10px;
    border-radius: 15px;
    transition:  .5s ease-in-out;
    font-weight: 600;
}

.link_aside:hover
{
    background-color: var(--color--blue);
    color: var(--color--light);
}

.container_header_dashboard
{
    width: 100%;
    height: auto;
    margin: auto;
}

.container_nav_dashboard
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.container_image_name_admin
{
    width: fit-content;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.image_admin_dashboard
{
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 100%;
}

.container_content_info
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    gap: 10px;
    padding: 10px 20px;
    grid-template-columns: repeat(2, 1fr);
}

.container_table
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0px 20px;
}

.container_content_card
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.card_info_main
{
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 15px;
    padding: 20px;
    background-color: var(--color--light);
    color: var(--color--dark);
    text-decoration: none;
}

.container_card_text_icon
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container_content_total
{
    width: 100%;
    height: 100%;
    margin: auto;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.card_total_main
{
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 15px;
    color: var(--color--dark);
    padding: 20px;
    background-color: var(--color--light);
}

.container_total_card
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    gap: 10px;
}

.icon_total_efect
{
    color: #008000;
}

.icon_total_transf
{
    color: #0077ff;
}

.text_black
{
    font-size: 15px;
    font-weight: 700;
}

.number_global
{
    font-size: 30px;
    font-weight: 700;
}

table
{
    width: 100%;
    background-color: var(--color--light);
    text-align: center;
    border-collapse: collapse;
    border-radius: 15px;
}

th, td 
{
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
}

td
{
    font-size: 14px;
}

tr:nth-child(even) 
{
  background-color: var(--color--light--three);
}

tr:hover
{
    background-color: rgb(206, 228, 255);
}

.icon_edit
{
    color: #ffbb00;
    text-decoration: none;
    cursor: pointer;
    margin: 0 5px;
}

.icon_trash
{
    color: #ff7272;
    text-decoration: none;
    cursor: pointer;
    margin: 0 5px;
}

.container_form_config
{
    max-width: 850px;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 10px;
    border-radius: 20px;
    display: grid;
    place-items: center;
}

.form_config
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 20px;
    border-radius: 20px;
    display: grid;
    gap: 20px;
    background-color: var(--color--light);
}

.image_user_config
{
    width: 200px;
    height: 200px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_image_button
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    place-items: center;
}

.button_input_image
{
    display: none;
}

.input_global
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background-color: var(--color--light--two);
    outline: none;
}

.button_close
{
    padding: 10px;
    border: none;
    background-color: rgb(253, 70, 70);
    color: var(--color--light);
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    transition: .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.button_close:hover
{
    background-color: red;
}

.button_global
{
    padding: 10px;
    border: none;
    background-color: var(--color--blue);
    color: var(--color--light);
    font-weight: 700;
    cursor: pointer;
    border-radius: 10px;
    transition: .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.button_global:hover
{
    background-color: var(--color--blue--dark);
}

.modal_overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal_overlay.show
{
    display: flex;
}

.modal 
{
    width: 90%;
    height: 95%;
    max-width: 500px;
    background: #fff;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: fadeIn 0.2s ease-out;
    font-family: "Segoe UI", sans-serif;
}

.modal_header 
{
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal_body 
{
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form_group 
{
    display: flex;
    flex-direction: column;
}


.modal_footer 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-top: 1px solid #e5e5e5;
    text-align: right;
}

@keyframes fadeIn 
{
    from 
    { 
        transform: scale(0.97);
        opacity: 0; 
    }
    to 
    { 
        transform: scale(1);
        opacity: 1; 
        }
}

.container_main_login
{
    width: 100%;
    height: 100vh;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.container_image_login
{
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color--blue);
}

.container_content_image_login
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    gap: 10px;
    place-items: center;
}

.image_login
{
    width: 300px;
    height: auto;
    margin: auto;
}

.span_text
{
    font-weight: 700;
    color: var(--color--light);
}

.link
{
    font-weight: 700;
    color: var(--color--light);
}

.container_form_login
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 20px;
}

.form_login
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    gap: 20px;
}

.container_list_links
{
    width: 100%;
    height: auto;
    margin: auto;
    position: fixed;
    bottom: 0;
    z-index: 10;
    display: none;
}

.list_items
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    background-color: var(--color--light);
    padding: 8px;
}

.link_list
{
    width: 70px;
    display: grid;
    place-items: center;
    gap: 3px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    color: var(--color--dark--light);
}

.container_main_options
{
    width: 100%;
    height: 100vh;
    margin: auto;
    background-color: var(--color--light);
    display: none;
}

.container_info_admin
{
    width: 100%;
    height: auto;
    margin: auto;
    background-color: var(--color--blue);
    padding: 10px;
}

.container_image_info_admin
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.container_image_admin
{
    width: auto;
    height: auto;
}

.image_admin
{
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 100%;
}

.container_info_admin
{
    display: grid;
}

.text_black_white
{
    font-size: 20px;
    font-weight: 700;
    color: var(--color--light);
}

.text_black_dark
{
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--color--dark);
    text-decoration: none;
}

.text_gmail_admin
{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
}

.container_list_options
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 10px;
}

.list_options
{

    list-style: none;
}

.link_list_option
{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    color: var(--color--dark);
    text-decoration: none;
    padding: 10px;
    font-weight: 600;
}


.button_delete
{
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.state_activo
{
    font-weight: 500;
    color: rgb(46, 167, 46);
}

.state_inactivo
{
    font-weight: 500;
    color: rgb(255, 123, 106);
}

@media screen and (max-width:768px)
{
.container_main
{
    width: 100%;
    height: 100vh;
    margin: auto;
    background-color: var(--color--light--two);
    display: grid;
    grid-template-columns: 1fr;
    overflow-y: auto;
}

.container_aside
{
    width: 100%;
    height: 100%;
    margin: auto;
    display: none;
    background-color: var(--color--light);
    overflow-y: auto;
}

.container_content_info
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    gap: 10px;
    padding: 10px;
    grid-template-columns: 1fr;
}

.container_table
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 10px;
}

.input_search
{
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    border-radius: 10px 0px 0px 10px;
    outline: none;
}

.disable_column
{
    display: none;
}

.container_main_login
{
    width: 100%;
    height: 100vh;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
}

th, td 
{
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
}

td
{
    font-size: 12px;
}

.modal
{
    overflow: scroll;
}

.container_image_button
{
    width: 100%;
    height: auto;
    margin: auto;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
}

.container_list_links
{
    width: 100%;
    height: 50px;
    margin: auto;
    position: fixed;
    bottom: 0;
    z-index: 10;
    display: block;
}    

.container_main_options
{
    width: 100%;
    height: 100vh;
    margin: auto;
    background-color: var(--color--light);
    display: block;
}

}

@media screen and (max-width: 550px)
{

.container_content_main
{
    width: 100%;
    height: auto;
    padding: 10px 5px;
    overflow-y: auto;
}

.container_nav_dashboard
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}


.container_title_form_search
{
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.text_black
{
    font-size: 12px;
    font-weight: 700;
}

.modal_body 
{
    width: 100%;
    height: auto;
    margin: auto;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}   
}