.container {
    margin-top: 2em;
}

.top {
    margin-bottom: 2em;
    display: flex;
}

.search-input {
    width: 40em;
    margin-right: 1em;
    display: inline-block;
}

#table th {
    padding: 0.5em 1.5em;
}

#table td {
    padding: 0.5em 1.5em;
}

#table td#title-row {
    padding-right: 10em;
}

.badge-container span {
    margin-right: 2em;
}

.login-input {
    width: 20em;
    margin-bottom: 1em;
}

.create-resource-form-input {
    width: 40em;
    margin-bottom: 1em;
}

#resource-created-toast {
    position: absolute;
    right: 2em;
    bottom: 2em;
}

.page-btn-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 5em;
}

.loading-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.loader {
    z-index: 1;
    width: 60px;
    height: 60px;
    margin: -76px 0 0 -76px;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }