:root {
    --pink: #E66DA5;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/*
body {
    background-image: url("cute-bunny.png");
    background-repeat: repeat;
}
img, select, input, div {
    border-radius: 4px;
    border: 1px solid var(--pink);
}
input, select, button {
    border: 2px solid var(--pink);
    border-radius: 4px;
}
input, select {
    font-size: 13px;
    min-height: 20px;
}
*/

@font-face {
    font-family: "CC Wild Words";
    src: url("mr/wild-words.ttf") format("truetype")
}

.sleep_shower {
    outline:2px solid blue;
}

/* CUTESCROLLER START */
body::-webkit-scrollbar, .cuteScroller::-webkit-scrollbar {
    width: 9px;
    height: 9px;
}
body::-webkit-scrollbar-thumb, .cuteScroller::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff79c6, #6a5acd);
    border-radius: 10px;
}
body::-webkit-scrollbar-track, .cuteScroller::-webkit-scrollbar-track {
    background: #282828;
}
/* CUTESCROLLER END */

td {
    text-align: center;
}

.pointer {
    cursor: pointer;
}
.slotsItemSize {
    width:64px; height:64px;
}
.historyItemSize {
    width:64px; height:64px;
}

.enstItemSize {
    width:80px; height:80px;
}
#enst_view2 tr:nth-child(2n) td {
    border-bottom: 1px solid var(--pink); /* Border below every even row's cells */
}
.enst_tag {
    color: #ff69b4;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding-top: 0px;
    margin-top: 0px;
    margin-right: 10px;
    text-shadow: 2px 2px 3px rgba(169, 169, 169, 0.7); 
}
.enst_tag:hover {
    text-decoration: underline;
}

.ward2_type_label {
    color: #ff69b4;
    font-weight: bold;
    text-shadow: 2px 2px 3px rgba(169, 169, 169, 0.7);
}
#ward_view2_table .ward2_row {
    border-bottom: 1px solid var(--pink);
}

.btnDesign {
    border: 2px solid var(--pink);
    border-radius: 4px;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-right: 10px;
    padding-left: 7px;
    margin: -2px;
    cursor: pointer;
}

.context-menu {
    position: absolute;
    text-align: center;
    background: lightgray;
    border: 1px solid black;
}
.context-menu ul {
    padding: 0px;
    margin: 0px;
    min-width: 150px;
    list-style: none;
}
.context-menu ul li {
    padding-bottom: 11px;
    padding-top: 11px;
    border: 1px solid black;
    cursor: pointer;
    user-select: none;
}
.context-menu ul li p {
    text-decoration: none;
    font-size: 15px;
    color: black;
    margin: 0px;
    user-select: none;
}
.context-menu ul li:hover {
    background: darkgray;
}

/* Settings Design START */
.settings-table, .settings-table th, .settings-table td {
    font-family: 'Poppins', sans-serif;
    border: 1px solid #ff79c6;
    text-align: center;
    color: #e0e0e0;
}
.settings-table th {
    background: #bd93f9;
    color: white;
    padding: 12px;
    font-size: 14px;
}
.settings-table td {
    font-size: 12px;
    padding: 10px;
    background: #282828;
}
.settings-table select {
    min-height: 30px;
}
.settings-table input {
    min-height: 25px;
}
.settings-table tr:nth-child(even) td {
    background: #3a3a3a;
}
/* Settings Design END */

/* Toaster START */
.toaster {
    position: fixed;
    background: #ff79c6;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}
  /* Toaster END */

.looksDisabled {
    opacity: 0.2;
    pointer-events: none;
}

/* Not Implemented Yet */
.sticky-row td {
  position: sticky;
  top: 0;
  z-index: 69;
}
