body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-image: url('imgs/bg.png');
    background-repeat: no-repeat;
    background-color: #fff;
    padding-bottom: 60px; /* Space for the footer */
}

#headcontainer
{
    padding-top:20px;
    margin-left:100px;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;

    background: rgb(245, 245, 245); /* Fall-back for browsers that don't                        support rgba */
    background: rgba(245, 245, 245, .8);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

.box__dragndrop,
.box__uploading,
.box__success,
.box__error {
  display: none;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
}
.uploads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.uploads-card { display: flex; gap: 10px; padding: 10px; border: 1px solid #e3e3e3; border-radius: 4px; background: #fff; position: relative; }
.uploads-card-select { position: absolute; top: 6px; left: 6px; }
.uploads-card-thumb { flex: 0 0 80px; }
.uploads-thumb { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; background: #f0f0f0; display: block; }
.uploads-thumb-icon { display: flex; align-items: center; justify-content: center; font-size: 32px; }
.uploads-card-body { flex: 1; min-width: 0; }
.uploads-card-name { font-weight: 600; word-break: break-all; }
.uploads-card-name a { color: inherit; text-decoration: none; }
.uploads-card-meta { margin: 4px 0 8px; word-break: break-all; }
.uploads-card-actions .btn { margin-bottom: 4px; }
