﻿html {
    height: 100%;
    width: 100%;
    min-height: 100%;
    min-width: 100%
}

body {
    background-color: lightblue;
    min-height: 100%;
    min-width: 100%
}

.viewTable {
    display: table;
    background-color: red;
    border: 1px solid green;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.viewHolder {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    min-height: 100%;
    min-width: 100%
}

.viewRow {
    display: table-row;
    background-color: blue;
    border: 1px solid black;
}

.viewCell {
    position: relative;
    display: table-cell;
    background-color: hotpink;
    border: 1px solid indigo;
    overflow: hidden;
}

iframe {
    position: relative;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.overlayMenu {
    position: absolute;
    display: table;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 75px;
    visibility: visible;
    background-color: transparent;
}

.overlayMenuContainer {
    visibility: hidden; /*Should be hidden for release */
    font-size: 12px;
    font-weight: 600;
    display: table;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    background-color: paleturquoise;
}

.overlayMenuRows {
    display: table;
    visibility: inherit;
    width: 100%;
    vertical-align: middle;
    text-align: center;
}

.siteName, .urlName {
    margin: 2px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    font-weight: bold;
    color: green;
    visibility: inherit;
    display: table-cell;
    /*   border: 1px solid black; */
    vertical-align: inherit;
    text-align: left;
    padding: 3px;
}

.editURL {
    margin: 2px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    font-weight: bold;
    color: green;
    visibility: inherit;
    display: table-cell;
    width: 40px;
    /*  border: 1px solid black;*/
    text-align: right;
    vertical-align: inherit;
}

.menuButton {
    visibility: inherit;
    display: table-cell;
    height: 50px;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
}

.menuIcon {
    height: auto;
    width: 30px;
    visibility: inherit;
    transition: transform .2s; /* Animation */
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    color: yellow;
}

    .menuIcon:hover {
        transform: scale(1.5);
    }

.urlEdit {
    width: 400px;
    margin-left: -200px;
    height: 150px;
    margin-top: -75px;
    position: fixed;
    background-color: lightcyan;
    border: 2px solid black;
    top: 50%;
    left: 50%;
    z-index: 5;
}

.urlEditTable {
    display: table;
    margin: 1px;
    width: 99%;
    height: 99%;
    padding: 1px;
    font-family: 'Arial Rounded MT';
    font-size: 12px;
    font-weight: 400;
}

.urlEditTableHdr {
    display: table-row;
    background-color: gray;
    font-weight: 800;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    margin: 15px;
    padding: 15px;
    vertical-align: middle;
    text-align: center;
    height: 20px;
}

.urlEditTableFooter {
    display: table-row;
    background-color: aliceblue;
    font-weight: 600;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    vertical-align: bottom;
    text-align: center;
    height: 50px
}

.urlTitleCell {
    display: table-cell;
    width: 100%;
    margin: 5px;
    vertical-align: middle;
    text-align: center;
}

.urlEditTableRow {
    display: table-row;
    background-color: lightgray;
    font-weight: 800;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    margin: 2px
}

.urlHeaderCell {
    display: table-cell;
    font-weight: 600;
    font-family: inherit;
    font-size: inherit;
    width: 70px;
    margin: 2px;
    vertical-align: middle;
    text-align: left;
}

.urlEditNameCell, .urlEditURLCell {
    display: table-cell;
    background-color: lightgray;
    font-weight: 400;
    font-family: inherit;
    font-size: inherit;
    width: auto;
    vertical-align: middle;
    text-align: left;
}

.editElements {
    width: 95%;
}

.iconTable {
    visibility: visible; /*Should be hidden for release */
    font-size: 12px;
    font-weight: 600;
    display: table;
    width: 100%;
    vertical-align: middle;
    text-align: center;
    background-color: paleturquoise;
}

.sliderContainer {
    /*   width:100%; */
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    visibility: hidden;
}

.slider {
    -webkit-appearance: slider-vertical;
    width: 25px;
    height: 100%;
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.2; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

    /* Mouse-over effects */
    .slider:hover {
        opacity: 1; /* Fully shown on mouse-over */
    }

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none; /* Override default look */
        width: 25px; /* Set a specific slider handle width */
        height: 25px; /* Slider handle height */
        border-radius: 50%;
        background: #4CAF50; /* Green background */
        cursor: pointer; /* Cursor on hover */
    }

.sideMenuBar {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 10px;
    height: 100%;
    opacity: 0.1;
    background-color: transparent;
    overflow: hidden;
}

    .sideMenuBar:hover {
        width: 150px;
        background-color: lightblue;
        border: 1px solid black;
        opacity: 0.9;
    }

    .sideMenuBar ul {
        text-align: left;
        color: yellow;
        font-size: 14px;
        font-family:'Times New Roman';
        padding-left: 10px;
    }

    .sideMenuBar li {
        color: yellow;
        user-select: none;
        overflow:hidden ;
        font-size:14px;
        height:18px;
        max-width:90%;
        text-overflow:ellipsis;

    }

        .sideMenuBar li:hover {
            color: blue;
            user-select: none;
        }

#mouseMask {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    visibility:hidden;
}

.dropDiv {
    background-color: transparent;
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 20;
}

.targetImage{
    user-select:none;
    width:inherit;
    height:inherit;
}

.navButton{
    background-color:lightsteelblue;
    color:mediumpurple;
    border-color:darkblue;
    border-radius:10px;
    font-family:'Broadway BT';
    font-size:larger;
    margin:10px 10px 10px :10px 10px 10px 10px;
    padding:10px 10px 10px 10px;
    width:300px;
}

    .navButton:hover {
        transform: scale(1.5);
        border-color: royalblue;
        background-color: rebeccapurple;
        color:lightblue;
    }

.paneSelector {
    visibility: inherit;
    display: table-cell;
    height: 30px;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    display:table-row;
}
.paneSel {
    visibility: inherit;
    height: 30px;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    display: table-cell;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 3px;
    padding-right: 3px;
}
.paneImg {
    height: auto;
    width: 30px;
    visibility: inherit;
    transition: transform .2s; /* Animation */
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    color: yellow;
}

    .paneImg:hover {
        transform: scale(1.5);
    }

.paneOptions {
    visibility: inherit;
    display: table-cell;
    height: 30px;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    display: table-row;
}

.pageOptions {
    visibility: inherit;
    display: table-cell;
    height: 40px;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    display: table-row;
}

.optionSel {
    visibility: inherit;
    height: 50px;
    width:60px;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    display: table-cell;
}
