body {
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 0; /* Changed from padding: 10px to padding: 0 */
    box-sizing: border-box;
    overflow: hidden; /* Changed from overflow-x: hidden to overflow: hidden */
}

.dashboard {
    width: 100%;
    min-height: 100vh; /* Changed from height: 100vh to min-height: 100vh */
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #bdc3c7 100%); /* Changed to mountain rock theme */
    border-radius: 8px;
    text-align: left; /* Changed text alignment to left */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    color: #ffffff; /* Changed text color */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    text-align: left; /* Changed text alignment to left */
    margin-left: 20px; /* Move the text a bit right */
}

.project-dropdown {
    margin-right: 20px;
    padding: 5px;
    font-size: 1em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    flex-grow: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.project-thumb {
    position: relative;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Enhanced box-shadow visibility */
    text-align: center;
    text-decoration: none;
    color: inherit;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff; /* Changed to solid color */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2)); /* Mirror finish effect */
}

.project-thumb:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5); /* Enhanced box-shadow color on hover */
}

.project-thumb:hover .play-button {
    opacity: 1;
    /* transform: scale(1); */
}

.project-thumb:hover .project-text {
    /* transform: translateY(-50px) scale(0.8); */
}

.project-text {
    transition: transform 0.3s ease;
    font-size: 1.5em; /* Updated font-size */
    color: #2c3e50; /* Changed to a solid and highly visible color */
}

.play-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: url('play-icon.png') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.beta-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff0000;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-thumb {
        padding: 10px;
    }
}
