/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11.11.2022, 8:55:10
    Author     : Michal Hodermarský
*/

@media (min-width:360px){
    .instruktorModal-content {
        width: 90%;
        max-width: 360px;
    }
    table#zobrazspravu td.lavastrana {
        padding-left: 10px;
    }

    table#zobrazspravu td.pravastrana {
        padding-right: 10px;
    }
    #ziakModalSprava {
        padding-top: 0px; /* Location of the box */
    }
}

@media (min-width:768px){
    .instruktorModal-content {
        margin: auto;
        width: 80%;
        max-width: 600px;
    }
    table#zobrazspravu td.lavastrana {
        padding-left: 45px;
    }

    table#zobrazspravu td.pravastrana {
        padding-right: 45px;
    }
    #instruktorModalSprava {
        padding-top: 20px; /* Location of the box */
    }
}

@media (min-width:1180px){
    .instruktorModal-content {
        margin: auto;
        width: 80%;
        max-width: 600px;
    }
    table#zobrazspravu td.lavastrana {
        padding-left: 45px;
    }

    table#zobrazspravu td.pravastrana {
        padding-right: 45px;
    }
    
    #instruktorModalSprava {
        padding-top: 60px; /* Location of the box */
    }
}

table#menu-instruktor-tab, table#zobrazspravu, table#nadpisInstruktorModalSprava-table {
    width: 100%;
}

table#menu-instruktor-tab td {
    background-color: #3bf58e;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

table#menu-instruktor-tab td:hover, tr.instruktor-sprava-tr:hover {
    background-color: #04d461;
    color: white;
}

table#menu-instruktor-tab td.instruktor-aktivne {
    color: white;
    background-color: #04c259;
}

.instruktor-obsah {
    width: 100%;
    margin-bottom: 50px;
    min-height: 600px;
    border: 3px solid #04c259;
}

/* <zaciatok> Modálne okno (pozadie) <zaciatok> */
#instruktorModalUprav, #instruktorModalSprava {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 120px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;  /*Full width */
    height: 100%;  /*Full height*/ 
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Obsah modálneho okna */
.instruktorModal-content {
    background-color: white;
    border-radius: 5px;
    /*margin: auto;*/
    display: table;
/*    width: 80%;
    max-width: 600px;*/
}

.instruktorModal-content .disabled {
    color: grey;
}

/* Animácia */
.instruktorModal-content {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

table#nadpisInstruktorModalSprava-table td#nadpisInstruktorModalSprava-td {
    width: 93%;
}

table#nadpisInstruktorModalSprava-table td#zatvorInstruktorModalSprava-td {
    width: 7%;
    font-size: 30px;
    font-weight: bold;
}

#zatvorInstruktorModalUprav, #zatvorInstruktorModalSprava {
    cursor: pointer;
}
/* <koniec> Modálne okno <koniec> */