body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e0f7fa, #b9fbc0); /* Soft gradient background */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    position: relative;
}

.dashboard {
    width: 100%;
    height: 150px; /* Adjust the height as needed */
    background: linear-gradient(135deg, #1f3c43, #1f3c43); /* Solid color for dashboard */
    border-radius: 0 0 15px 15px; /* Rounded bottom corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease-in-out;
}

.dashboard:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.logo {
    height: 100px; /* Adjust the size as needed */
    margin-bottom: 10px;
}

.text {
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.text h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.dropdown {
    position: absolute;
    top: 20px;
    left: 20px; /* Position dropdown to the left of the rules section */
}

.dropbtn {
    background-color: #1f3c43;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.dropbtn:hover {
    background-color: #174b52;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 8px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #45a049;
}

.info-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    max-width: 1200px;
    margin-top: 20px;
    position: relative;
}

.info-box {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 0 10px;
    flex: 1;
    position: relative; /* Ensure the pseudo-element is positioned relative to the box */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 255, 0.3); /* Light aura color */
    border-radius: 10px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    z-index: -1; /* Place behind the content */
}

.info-box:hover::before {
    opacity: 1;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6); /* Aura effect */
}

.info-box:hover {
    transform: scale(1.05); /* Slight pop-up effect */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow for hover effect */
}

.slanted-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Adjust height as needed */
    background: #1f3c43;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    z-index: -1; /* Ensure it sits behind other content */
}
