main {
    height: fit-content;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px dashed #630202;
    padding: 10px;
    background-color: white;
}

.main {
    border-radius: 10px;
    border: 1px dashed #630202;
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: overlay;
    background-image: url("https://rice.place/image/redbg.png");
    background-attachment: fixed;
    padding: 10px;
    margin: auto;
    width: 300px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

header {
    background-image: url("https://plasma.nekoweb.org/images/plasmalogo1.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 109px;
}

nav {
    padding: 5px;
    display: flex;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: overlay;
    background-image: url("https://rice.place/image/redbg.png");
    background-attachment: fixed;
    border-radius: 10px;
    border: 0px dashed #630202;
    margin-top: 5px;
}

button {
    font-family: plasma;
    font-size: 14px;
    font-weight: bold;
    color: #630202;
    border: none;
    background-color: transparent;
    text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
    transition: 0.3s;
}

button:hover {
    text-decoration: underline;
    text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
}

section {
    padding-top: 10px;
    padding-bottom: 10px;
}

table {
    border-collapse: collapse;
    font-size: 12px;
    width: fit-content;
    margin: 0px;
    border: 1px solid #630202;
    background-color: #FAFAFA;
    margin-top: 5px;
}

tr {
    border-bottom: 1px dashed #630202;
}

input, textarea {
    resize: none;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #630202;
}

input[type=submit] {
    background-color: white;
    font-family: plasma;
    font-size: 12px;
    color:#630202;
    transition: 0.3s;
}

input[type=submit]:hover {
    background-color: #630202;
    font-family: plasma;
    font-size: 12px;
    color:white;
}

span {
    background-color: #630202;
    color: white;
}

.hidden {
  display: none;
}

.pagination-container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
  justify-content: center;
  box-sizing: border-box;
}

.pagination-number,
.pagination-button{
  font-size: 12px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 20px;
  width: 20px;
  border-radius: 3px;
}

.pagination-number:hover,
.pagination-button:not(.disabled):hover {
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px dashed #630202;
}

.pagination-number.active {
  color: #fff;
  text-shadow: -1px -1px 0 #630202, 1px -1px 0 #630202, -1px 1px 0 #630202, 1px 1px 0 #630202;
}

ul {
list-style:url("https://plasma.nekoweb.org/images/plasmaicon.png");
padding-left:0px;
margin-top:5px;
line-height: 1.3;
}

li {
    padding: 5px 5px 5px 10px;
    border-radius: 10px;
    list-style-position: inside;
    margin-bottom: 5px;
    background: #ffb8b8;
    background: linear-gradient(90deg, rgba(255, 184, 184, 0.33) 10%, rgba(255, 255, 255, 0) 44%);
}

article {
    display: flex;
    flex-direction: column;
    gap:5px;
}

.plus {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 0.9;
    border: 1px dashed #630202;
    padding: 5px;
}

footer {
    border-top: 1px dashed #630202;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    line-height: 0.9;
}