body {
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
	margin: 0;
	padding: 0;
}

#main .container #main-row #main-column #main-box {
  margin: 120px 0;
  max-width: 600px;
  min-height: 320px;
  border: none;
  background-color: #fff;
  -moz-border-radius: 5px; /* for Firefox */
  -webkit-border-radius: 5px; /* for Chrome */
}
#main .container #main-row #main-column #main-box #main-form {
  padding: 20px;
}
#main .container #main-row #main-column #main-box #main-form #register-link {
  margin-top: -85px;
}

.upload-box {
    border: 2px dashed #ccc;
    padding: 40px;
    text-align: center;
    cursor: pointer;
}

#progress-bar {
    width: 0;
    height: 20px;
    background-color: #4caf50;
    text-align: center;
    color: white;
}

.hidden {
    display: none;
}

#file-list {
    list-style: none;
    padding: 0;
}

#file-list li {
	background-color: #eee;
	font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-info {
    display: flex;
    align-items: center;
}

.remove-button {
    cursor: pointer;
    color: red;
    margin-left: 10px;
}

#speed {
	font-size: 12px;
}

/* アップロード完了 */
.url-box {
	background-color: #f8f9fa;
	padding: 10px;
	border-radius: 5px;
	margin-top: 20px;
}
.url-box p {
    display: flex;
    align-items: flex-start;
}

.url-box strong {
    flex-shrink: 0;
    margin-right: 10px; /* Adjust the spacing as needed */
}

#download-url {
	word-break: break-all;
    word-wrap: break-word; /* For older browsers */
    overflow-wrap: break-word; /* For modern browsers */
}

.complete_description {
	margin: 40px 0px;
    text-align: center;
}
.copy-button {
	background-color: #343a40;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}

/* ダウンロード */
.dl_list {
	height: 200px;
	overflow-y: scroll;
}
.dl_ul {
	font-size: 12px;
}