﻿html {
    height: 100%;
}

body {
    font-family: 'Segoe UI Web Light', 'Segoe UI Light', 'Segoe WP Light', 'Segoe UI', 'Segoe WP', Tahoma, Arial, sans-serif;
    height: 100%;
}

#embedContainer {
    height: 90%;
    width: 100%;
    border: none;
}

#dashboardContainer {
    height: 920px;
    width: 100%;
    max-width: 1320px;
}

#dashboardContainer iframe{
    border: none;
}

#buttonsWrapper {
    width: 100%;
    text-align: center;
    padding-top: 10px;
}

a:hover, a:visited, a:link, a:active {
    text-decoration: none;
    cursor: pointer;
}

#buttonsWrapper a {
    background-color: rgb(36, 169, 225);
    border: none;
    color: white;
    padding: 5px 30px;
    margin: 5px;
    width: 720px;
    height: 30px;
    display: inline-block;
    text-align: center;
}

#buttonsWrapper a:hover {
   font-size: 110%;
}


#LogOutBtnWrapper {
    position: absolute;
    right: 10px;
}

#tileContainer {
    width: 400px;
    height: 350px;
}

.infoBox {
    margin-top: 30px;
}

.btn-blue,
a.btn-blue {
    color: #fff;
    background-color: #0066CC;
    border: none; /* 枠線を消す */
    outline: none; /* クリックしたときに表示される枠線を消す */
    border-radius: 10px;
}

    .btn-blue:hover,
    a.btn-blue:hover {
        color: #fff;
        background: #00CCFF;
        border: none; /* 枠線を消す */
        outline: none; /* クリックしたときに表示される枠線を消す */
        border-radius: 10px;
    }

.btn-gray,
a.btn-gray {
    color: #fff;
    background-color: #999999;
    border: none; /* 枠線を消す */
    outline: none; /* クリックしたときに表示される枠線を消す */
    border-radius: 10px;
}

    .btn-gray:hover,
    a.btn-gray:hover {
        color: #fff;
        background: #DDDDDD;
        border: none; /* 枠線を消す */
        outline: none; /* クリックしたときに表示される枠線を消す */
        border-radius: 10px;
    }



