﻿body {
    font-family: Trebuchet MS, Tahoma, Helvetica, Verdana, Arial, sans-serif;
}

table {
    border-collapse: collapse;
    margin: 20px auto;
    position: relative;
    width: 450px;
}

    table td {
        text-align: left;
        font-size: 14px;
        padding: 5px;
        font-weight: bold;
    }

        table td > input, table td > select, table td > div, table td > span {
            width: 100%;
            box-sizing: border-box;
            border: solid 1px #ccc;
            padding: 5px;
            font-weight: normal;
            display: block;
            box-shadow: 0px 5px 10px 2px rgb(34 60 80 / 20%);
        }

    table:before, table:after {
        content: '';
        position: absolute;
        width: 4px;
        height: 100%;
        background-color: #000;
        top: 0;
        display: block;
        transform: rotate(6deg);
    }

    table:before {
        left: -30px;
    }

    table:after {
        right: -30px;
    }

    table td input:hover, table td select:hover {
        border: solid 1px #000;
    }

    table td input[disabled]:hover, table td select[disabled]:hover {
        border: solid 1px #ccc;
    }

a {
    color: #00f;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.subtable {
    padding-top: 25px;
}

img {
    text-decoration: none;
}

#btnChange, table td div, table td input[disabled] {
    background-color: #eee;
}

    #btnChange:hover {
        background-color: #ddd;
    }

header {
    margin: 30px 0;
}

    header * {
        color: black;
        font-style: italic;
        display: inline;
        font-size: 24px;
        border: 0;
    }

    header h1 {
        font-weight: bold;
    }

    header h2 {
        font-weight: normal;
    }

    header img {
        height: 30px;
        vertical-align: bottom;
        margin-bottom: 0;
    }

    header span {
        padding: 0 3px;
    }

    header a:hover {
        text-decoration: none;
    }

        header a:hover h1 {
            text-decoration: underline;
        }

@media (max-width: 590px) {
    table {
        width: 100%;
    }

        table:before, table:after {
            display: none;
        }

    img {
        max-width: 100%;
    }
}
