/*
 * Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
 * See LICENSE in the project root for license information.
 */

html,
body {
    /*width: 100%;*/
    /*height: 100%;*/
    margin: 0;
    padding: 0;
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    background: #f8f8f8;
}
ul {
    margin: 0;
    padding: 0;
}
b {
    font-weight: bold;
}

input::-ms-clear { display: none; }

.header {
    text-align: right;
    background-color: #2B579A;
    color: white;
    padding: 5px 20px;
    font-size: 14px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.6);
}
.header button {
    outline: none;
    border: none;
    padding: 4px 20px;
    background-color: #eee;
    transition: background-color 0.2s;
    position: relative;
}
.header button:hover {
    background-color: #bbb;
}
.tooltip {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: 200px;
    top: 100%;
    right: 0;
    padding: 5px 10px;
    border: 1px solid #333;
    color: #666;
    font-size: 13px;
    box-sizing: border-box;
    text-align: left;
    background-color: #fff;
}
.header button:hover .tooltip{
    visibility: visible;
}
a[name='clashWord'] {
    cursor: pointer;
    text-decoration: none;
}
a[name='clashWord']:hover {
    cursor: pointer;
    text-decoration: underline;
}
