/* Background GIF style */
body {
    background: url('giphy.gif') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    margin: 0;
}

/* Heading (h1) text color */
h1 {
    color: white !important;  /* Ensures the color is applied */
    text-align: center;
    font-size: 3em;
    margin-top: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Optional: improves readability */
}

/* UI Dragging */
.ui-draggable-dragging {
    z-index: 10000 !important;
}

.ui-draggable {
    z-index: 10;
}

/* Border Top */
#border-top {
    height: 30px;
}

/* Cell styles */
div[id*=cell-] {
    padding: 0px;
    margin: 0px;
    height: 65px;
    width: 65px;
}

div[id*=cell-black-] {
    background-color: #e33307;
}

div[id*=cell-white-] {
    background-color: #f3cf93;
}

/* Row styles */
div[id*=row-] {
    height: 65px;
}

/* Span inside cells */
span[id*=p-] {
    width: 65px;
    height: 65px;
    margin-left: 8px;
    font-size: 50px;
    text-align: center;
}

/* Color Path */
.color-path {
    border: 2px solid #7c8bc4;
    background-color: yellow !important;
}

/* Kill Cell Color */
.kill-cell-color {
    background-color: red !important;
}

/* Message box */
#message-div {
    position: absolute;
    top: 200px;
    left: 477px;
    width: 390px;
    height: 200px;
}

/* Opposite side message */
.opposite-side-msg {
    font-size: 30px;
    text-align: center;
}

/* White background for color body */
.color-body-white {
    background-color: white !important;
}
