#mineButton {
    height: 80px;
    color: white;
    background: linear-gradient(
        135deg,
        rgb(30, 40, 60) 0%,
        rgb(50, 60, 90) 50%,
        rgb(30, 40, 60) 100%
    );
    font-size: 20px;
    padding: 6px 8px;
    border-radius: 8px;
    margin: 4px;
    height: 80px;
    border: 2px solid var(--accent);
    transition: all 0.2s ease;
}
#mineButton:hover {
    background: linear-gradient(
        135deg,
        rgb(50, 60, 90) 0%,
        rgb(70, 90, 130) 50%,
        rgb(50, 60, 90) 100%
    );
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.45),
        0 0 12px var(--accent-glow);
}
#mineButton:active {
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.4),
        0 0 8px var(--accent-glow);
}
body {
    background: linear-gradient(
        180deg,
        rgb(10, 14, 22) 0%,
        rgb(20, 25, 35) 50%,
        rgb(12, 16, 24) 100%
    );
    color: white;
}

#inventoryThingy {
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    margin-left: 4px;
    height: 50%;
}
#inventoryHead {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    text-align: center;
}
#log,
#logSpecial {
    position: relative;
    height: 50%;
    width: 400px;
    padding: 6px 8px;
    border-radius: 10px;
    margin: 4px;
    overflow-y: auto;
}
#container {
    display: flex;
    gap: 20px;
}
.craft-header {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    font-weight: bold;
    margin: 0 0;
    background: linear-gradient(
        90deg,
        rgb(30, 40, 60) 0%,
        rgb(60, 80, 110) 100%
    );
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 8px var(--accent-glow);
    margin-bottom: 4px;
}

.craft-container {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    margin-left: 4px;
    margin-right: 4px;
    border-radius: 8px;
}

.craft-container.show {
    max-height: 1000px; /* large enough for content */
    transition: max-height 0.3s ease;
}

.craft-container button {
    display: block;
    margin: 4px 0;
}
#craftingButtons {
    background-color: rgba(110, 110, 110, 0);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
}
.craftingButton {
    background: linear-gradient(
        135deg,
        rgb(40, 50, 70) 0%,
        rgb(60, 80, 120) 50%,
        rgb(40, 50, 70) 100%
    );
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 8px var(--accent-glow);
    color: rgb(255, 255, 255);
    border: 2px solid var(--accent);

    padding: 8px 16px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 5px;
}
.craftingButton:hover {
    background: linear-gradient(
        135deg,
        rgb(60, 80, 120) 0%,
        rgb(90, 120, 180) 50%,
        rgb(60, 80, 120) 100%
    );
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.45),
        0 0 12px var(--accent-glow);
}
.craftingButton:active {
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.4),
        0 0 8px var(--accent-glow);
}
.craft-panel {
    border-radius: 8px;
    padding: 6px 8px;
    margin: 4px;
    width: 220px;
    box-sizing: border-box;
    border-width: 2px;
}
.infoText {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}
.flavorText {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(139, 139, 139);
    font-style: italic;
}
input {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    width: 192px;
    border: 2px solid var(--accent);
    padding: 4px 6px;
    color: white;
    transition: all 0.2s ease;
}
input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 6px var(--accent-glow);
}
.container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: center;
}
#leftSideElements,
#rightSideElements {
    display: flex;
    flex-direction: column;
}
:root {
    --accent: rgb(130, 180, 220);
    --accent-glow: rgba(130, 180, 220, 0.5);
    --panel-dark: rgb(20, 25, 35);
    --panel-mid: rgb(32, 38, 50);
    --panel-light: rgb(50, 60, 80);
}
#mineButton:active,
.craftingButton:active {
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.4),
        0 0 8px var(--accent-glow);
    border-color: var(--accent);
}
.infoText {
    line-height: 1.35;
}

.flavorText {
    font-size: 13px;
}
input {
    background-color: rgba(255, 255, 255, 0.05);
}

input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 6px var(--accent-glow);
}
#log,
#logSpecial {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    overflow: auto;
    height: 390px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

#mineButton,
#log,
#logSpecial,
#box,
.craft-panel,
.craftingButton {
    border-color: 2px solid var(--accent);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 8px var(--accent-glow);
    transition: all 0.2s ease;
}
#box {
    border-radius: 8px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 72px;
    margin: 4px;
    text-align: center;
    padding: 2px 4px;
    display: flex;
    width: 1381px;
    justify-content: center;
    align-items: center;
}
#log,
#logSpecial,
#box,
.craft-panel {
    background: linear-gradient(
        180deg,
        var(--panel-dark) 0%,
        var(--panel-mid) 50%,
        var(--panel-light) 100%
    );
    border: 2px solid var(--accent);
    border-radius: 8px;
}
