html {
    background-color: #79ad7a;
}

body, form * {
    font-family: "Meiryo UI", "Arial", sans-serif;
    font-size: 16px;
}

body {
    padding: 30px;
}

header, footer, section {
    text-align : center;
    background: #d2fff4 none repeat scroll 0 0;
    box-shadow: 0 0 5px #333;
    margin: 10px;
    border-radius: 10px;
}

section {
    padding: 30px;
    background: white;
}

header, footer {
    padding: 10px;
}

h2 {
    /* color: rgb(32, 140, 64); */
    color: DarkRed;
    font-size: 200%;
}
footer {
    color: DarkRed;
}

input {
    padding: 5px;
    background: white;
    border-radius: 4px;
    border: 1px solid #888;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.5) inset;
    font-size: 120%;
}

.noshow {
   display: none; 
}


button {
    color: black;
    background: linear-gradient(#FFF,#666);
    border: 0;
    border-radius: 4px;
    padding: 8px 25px;
    text-shadow: 1px 1px white;
    cursor: pointer;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

button:hover {
    background: linear-gradient(#FF9,#665);
}

progress {
  background-color: #DDD;
  border-radius: 2px;
  border: 0;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25) inset;

  width: 250px;
  height: 5px;
  
  position: relative;
  display: none;
  margin: auto;
  margin-bottom: 10px;
}
  
#progress-txt {
    font-size: 10px;
    color: blue;
    margin-top: -9px;
    display: block;
}

#upload {
    background: #EEE;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    padding: 10px;
}
#upload input {
    margin: 10px;
}
#link div {
    background-color: #EEE;
    border: 1px solid #CCC;
    padding: 30px;
    margin: 20px;
}
#link span {
    color: green;
    display: block;
}
#links span {
    display: block;
    padding: 5px;
    font-size: 90%;
    text-align: center;
    outline: 0;
}
#links span a {
    margin-left: 10px;
    font-size: 80%;
}
#download #filename {
    font-size: 200%;
    font-weight: bold;
    color: green;
}
#download #filesize {
    font-size: 120%;
    color: blue;
}
#home a.clear {
}
#list {
    padding: 10px;
}
#list table {
    width: 80%;
    margin: auto;
    border: 1px solid #CCC;
}
#list table th {
    padding: 5px;
    background-color: #CCC;
    color: #333;
    user-select: none;
    cursor: default;
}
#list table th:not(.del) {
    cursor: pointer; 
}
#list table td {
    padding: 5px;
}
#list table tr:nth-child(odd) {
   background-color: #EEE;
}
#list table .up,
#list table .del {
    text-align: center;
}

#list table .headerSortDown::before {
    content: '▲';
}
#list table .headerSortUp::before {
    content: '▼';
}
