body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.swiper {
    height: 100vh;
    overflow: hidden;
}

.swiper-slide > div {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img {
    width: auto;
    height: 100%;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

div.container {
    width: 150px;
    height: 150px;
}

div.container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.spacing {
    margin: 20px 0;
}

input[type=file] {
    width: 350px;
    max-width: 100%;
    color: #444;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #555;
}

input[type=file]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
    background: #0d45a5;
}

.button {
    border-radius: 0.375rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.button.primary, .button.primary:link, .button.primary:visited {
    border: 1.5px solid #2c7be5;
    background-color: #d5e5fa;
    color: black;
}

.button.primary:hover, .button.primary:active {
    background-color: #2c7be5;
    color: #d5e5fa;
}

.button.danger, .button.danger:link, .button.danger:visited {
    border: 1.5px solid #e63757;
    background-color: #fad7dd;
    color: black;
}

.button.danger:hover, .button.danger:active {
    background-color: #e63757;
    color: #fad7dd;
}

.button.success, .button.success:link, .button.success:visited {
    border: 1.5px solid #00d97e;
    background-color: #ccf7e5;
    color: black;
}

.button.success:hover, .button.success:active {
    background-color: #00d97e;
    color: #ccf7e5;
}
