/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : Feb 12, 2023, 3:54:39 PM
    Author     : Teemu
*/


li .dropbtn {
    display: inline-block;
    color: white;
    background-color: brown;
    text-align: center;
    padding: 15px 2px;
    text-decoration: none;
}

li.dropdown {
    display: inline-block;
    float: left;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    overflow: hidden;
    box-shadow: 15px 15px 15px 0px rgba(0,0,0,0.8);
    z-index: 1;
    width: 50%;
}

.dropdown-content a {
    color: black;
//    margin-top: 5px;
    margin-bottom: 15px;
    text-decoration: none;
    display: block;
    text-align: left;
    width: 100%;
    height: 100%;
}

.dropdown-content a:hover{
    background-color: #888;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown img {
    -webkit-box-reflect: below 20px linear-gradient(rgba(255,255,255,0.01),rgba(255,255,255,0.5));
}

.dropbtn:enabled .dropdown-content {
    display: block;
}

.activedrp{
    float: left;
    display: block;
    background-color: #aaa;
}

