body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, hr {
    padding: 0;
    margin: 0;
}

body > div * {
    cursor: url(../img/cursor.cur), default !important;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset, img {
    border: 0;
}

address, caption, cite, code, dfn, th, var {
    font-weight: normal;
    font-style: normal;
}

ol, ul {
    list-style: none;
    padding-left: 16px;
}

caption, th {
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 100%;
}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}

a {
    color: inherit;
    text-decoration: inherit;
}

input {
    font-family: Arial, serif;
}

input:focus {
    outline: none;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 10px;
    font-family: Arial, serif;
    min-height: 100vh;
    color: #333;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
}

input[disabled] {
    color: inherit;
}

.hidden {
    display: none !important;
}

img {

    -khtml-user-drag: none;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

[draggable] {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    /* Required to make elements draggable in old WebKit */
    -khtml-user-drag: element;
    -webkit-user-drag: element;
    user-drag: element;
}

#cookie-alert {
    position: fixed;
    bottom: 0px;
    left: 0;
    right: 0;
    background: #192934;
    padding: 11px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 4px solid darkmagenta;
    border-image: linear-gradient(90deg, #cc33ff, #e66e78, #ff8b00, #ff3328, #9e7698, #32ccfe) 1;
    border-image-slice: 1;
}
#cookie-alert p {
    margin: 0;
    font-size: 14px;
    color: #cccccc;
}
#cookie-alert button {
    background: #7bd77f;
    color: #333333;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
#cookie-alert button.reject {
    background: #d7746d;
}
#cookie-alert a {
    color: #2196F3;
    text-decoration: none;
}