/* Base styling */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #111; /* Dark background */
    color: #f0f0f0; /* Light text color for readability */
    font-family: sans-serif;
}

#textInputDisplay {
            display: none; /* Initially hidden */
            width: 100%;
            font-size: 24px;
            padding: 10px;
            border: none;
            background-color: #333;
            color: #f0f0f0;
        }

/* Jubeat cabinet styling */
.jubeat-cabinet {
    width: 768px;
    height: 1360px;
    background-color: #1a1a1a; /* Darker panel for cabinet */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 4px solid #222; /* Border for a polished look */
    position: relative;
    box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.5); /* Neon glow effect */
	font-family: sans-serif;
}

/* Info display section */
.infodisplay {
    width: 768px;
    height: 464px;
    background-color: #1e1e2e; /* Dark, blue-toned panel */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #f0f0f0;
    border-bottom: 4px solid #333;
    text-shadow: 0px 0px 5px rgba(0, 255, 255, 0.5); /* Slight glow */
}

.track-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #333;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
	
}

.track-details {
    margin-left: 10px;
	display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.gap {
height: 168px;
}

.track-name {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #00e5ff; /* Vibrant aqua color */
}

.artist-name, .album-name, .track-time {
    font-size: 18px;
    margin: 5px 0;
    color: #d0d0d0;
}

.track-time {
    font-size: 16px;
    color: #aaa;
}

/* Button section layout */
.button-section, .search-button-section, .result-button-section{
    display: grid;
    grid-template-columns: repeat(4, 160px);
    grid-template-rows: repeat(4, 160px);
    gap: 37px;
    margin: 0 8px 6px 8px;
    width: 752px;
}

/* Button styling */
.button {
    width: 160px;
    height: 160px;
    background-color: #222; /* Dark base color for buttons */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 24px;
    color: #f0f0f0; /* Light text color */
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s, transform 0.1s;
    text-align: center;
    box-shadow: inset 0px 0px 10px rgba(0, 255, 255, 0.2);
}

.button:hover {
    background-color: #333;
    transform: scale(1.05); /* Slight scaling on hover */
}

.button.active {
    background-color: #00e5ff; /* Aqua color on active */
    box-shadow: 0px 0px 15px rgba(0, 229, 255, 0.8); /* Glow effect */
}

.button-artwork {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.2);
	visibility: hidden;
}

#category {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    color: #00e5ff; /* Aqua color for track details */
}

.button-track-name,
.button-artist-name {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    color: #00e5ff; /* Aqua color for track details */
}

.button i {
    font-size: 36px; 
    color: #00e5ff;
}

.trackDetails {
width:100%;
}

.connectMessage {
width: 100%;
text-align: center;
 color: #00e5ff;
 font-size: 28px;
}
