.main-container {
  margin-top: 16px;
  margin-bottom: 16px;
}

.form {
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff50;
    border-radius: 4px;
    color: #ffffff;
    padding: 16px;
    margin-bottom: 16px;
}

.inputfield {
    width: 100%;
    height: 48px;
    border: 1px solid #ffffff50;
    border-radius: 4px;
    color: #ffffff;
    padding: 16px;
    font-size: 1.2em;
    background-color: #18181a;
    outline: none;
    transition: 0.1s;
    margin-top: 16px;
}
.write-input:hover {
    border: 1px solid #ffffff;
}
.readonly-input {
    border: 1px solid #ffffff20;
}

table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border: 1px solid #ffffff50;
  padding: 16px;
  text-align: center;
}
th {
  background-color: #ffffff;
  color: #000000;
}

.account-button {
  width: 50%;
  height: 48px;
  background-color: #18181a;
  color: #ffffff;
  font-size: 1.2em;
  cursor: pointer;
  margin-top: 16px;
}
.logout-button {
  border-radius: 4px 0 0 4px;
  border: 1px solid #ffffff50;
  transition: 0.1s;
}
.logout-button:hover {
  background-color: #ffffff;
  color: #000000;
}
.remove-button {
  border-radius: 0 4px 4px 0;
  border: 1px solid #ff004c;
  transition: 0.1s;
}
.remove-button:hover {
  background-color: #ff004c;
  color: #ffffff;
}

.my-post a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff50;
  border-radius: 4px;
  padding: 8px;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 1em;
  text-decoration: none;
  color: #ffffff;
  transition: 0.1s;
}
.my-post a:hover {
  border-color: #ffffff;
}

.my-post-option {
  width: 48px;
  height: 32px;
  border: 1px solid #ff004c;
  border-radius: 4px;
  background-color: #18181a;
  color: #ffffff;
  cursor: pointer;
  transition: 0.1s;
}
.my-post-option:hover {
  background-color: #ff004c;
  color: #ffffff;
}

.hide-remove {
  display: none;
}

.premium-register-button {
  width: 100%;
  height: 48px;
  margin-top: 16px;
  background-color: #18181a;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1em;
  transition: 0.1s;
  cursor: pointer;
}
.premium-register-button:hover {
  background-color: #ffffff;
  color: #000000;
}

.my-files img {
  width: 22%;
  height: 22%;
  margin: 4px;
  border: 1px solid #ffffff50;
  border-radius: 4px;
  transition: 0.1s;
}
.my-files img:hover {
  border-color: #ffffff;
}

.file-option-button {
  width: 80px;
  height: 32px;
  border: 1px solid #ffffff50;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
}
#downloadFileBtn {
  background-color: #18181a;
  color: #ffffff;
  transition: 0.1s;
}
#downloadFileBtn:hover {
  background-color: #ffffff;
  color: #000000;
}
#removeFileBtn {
  border: 1px solid #ff004c;
  background-color: #18181a;
  color: #ffffff;
  transition: 0.1s;
}
#removeFileBtn:hover {
  background-color: #ff004c;
  color: #ffffff;
}