body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
}

.container {
    max-width: 90%;
    margin: 50px auto; /* Adjust margin for better spacing on small screens */
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

#title,
#houseToPlanetTitle {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #ddd;
}

.tables-container {
    display: flex;
    flex-wrap: wrap; /* Allow tables to wrap to the next line on small screens */
    justify-content: space-between;
}

.table {
    width: 50%;
    box-sizing: border-box; /* Include padding and border in the width calculation */
    margin-bottom: 20px;
}

#hitTable, #houseToPlanetTable {
    width: 100%;
    border-collapse: collapse;
}

#hitTable th, #hitTable td, #houseToPlanetTable th, #houseToPlanetTable td {
    border: 1px solid #333;
    padding: 10px;
    text-align: center;
}

#hitTable td, #houseToPlanetTable td {
    background-color: rgba(0, 0, 0, 0.8) /* Change to your desired color */
}

#hitTable th, #houseToPlanetTable th {
    background-color: #222;
    color: #ddd;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    background-color: #333;
    color: #fff;
    border: 1px solid #555;
    box-sizing: border-box; /* Include padding and border in the width calculation */
}

input[type="text"]:focus {
    box-shadow: 0 0 80px rgba(255, 255, 0, 0.8);
}

button {
    background-color: #cc8500;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #d178e7;
}

#calculator {
    text-align: center;
    color: #FFD700; /* Golden color */
    font-family: 'Arial', sans-serif;
    font-size: 4em;
    margin-bottom: 20px;
    position: relative;
    /* Add more styles as needed */
  }

  #calculator::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: #fac20c;
    box-shadow: 0 2px 50px rgba(203, 238, 5, 0.6);
    position: absolute;
    bottom: 1;
    left: 10;

    margin: -10px auto;
    
  }

  #separator {
    width: 100%;
    height: 50px; /* Adjust the height as needed */
    margin: 0 auto;
    border-bottom: 10px solid #fac20c;
    background: linear-gradient(to top, rgba(240, 142, 15, 0.808) 0%, rgba(0, 0, 0, 0.8) 100%);
  }


@keyframes growShadowGreen {
    0% {
        box-shadow: inset 0 0 0 0 rgba(0, 255, 0, 0.7);
    }
    50% {
        box-shadow: inset 0 0 20px 20px rgba(0, 255, 0, 0);
    }
    100% {
        box-shadow: inset 0 0 0 0 rgba(0, 255, 0, 0.7);
    }
}

@keyframes growShadowRed {
    0% {
        box-shadow: inset 0 0 0 0 rgb(2, 0, 0);
    }
    50% {
        box-shadow: inset 0 0 20px 20px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: inset 0 0 0 0 rgba(116, 1, 1, 0.7);
    }
}

@media only screen and (max-width: 1920px) {
    .table {
        width: 100%;
    }
    #calculator {
        text-align: center;
        color: #FFD700; /* Golden color */
        font-family: 'Arial', sans-serif;
        font-size: 2em;
        margin-bottom: 20px;
        /* Add more styles as needed */
      }
}
