@import url('https://fonts.googleapis.com/css2?family=Viga&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: 'Arial', sans-serif;
	background: linear-gradient(to bottom, #1a1b4b, #141336);
	color: #fff;
	height: 100vh; /* Full screen height */
	margin: 0;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
  }
  
  /* Main container */
  .container {
	display: flex;
	width: 100%;
	height: 100vh; /* Full screen height */
  }
  
  /* Left section (Albums) */
  .left-section {
	background-color: #ffffff;
	padding: 50px;
	width: 60%; /* 60% width */
	overflow-y: auto; /* Scroll if content overflows */
	border-top-right-radius: 50px;
	box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .left-section h2 {
	color: #141336;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
  }
  
  .albums {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* Two large columns for bigger album art */
	gap: 15px; /* Reduced gap for tighter spacing */
	justify-items: center;
	align-items: center;
  }
  
  .album {
	width: 100%;
	max-width: 300px; /* Increased album size */
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
  }
  
  .album:hover {
	transform: scale(1.05); /* Subtle hover effect */
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  }
  
  /* Right section (Search and branding) */
  .right-section {
	background-color: #1a1b4b;
	width: 40%; /* 40% width */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 50px;
	color: #fff;
	box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .logo img {
	width: 100px;
	height: 100px;
	margin-bottom: 30px;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  }
  
  .app-name {
	font-size: 48px;
	font-weight: bold;
	margin-bottom: 30px;
	letter-spacing: 1px;
  }
  
  .app-name span {
	color: #1ac8e9; /* Highlight color for 'away' */
  }
  
  .search-container {
	width: 80%;
  }
  
  .search-box {
	width: 100%;
	padding: 15px;
	font-size: 20px;
	border: 2px solid #272970;
	border-radius: 15px;
	outline: none;
	background-color: #141336;
	color: #fff;
	transition: border-color 0.3s, box-shadow 0.3s;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .search-box::placeholder {
	color: #ddd;
	font-size: 18px;
  }
  


/* Autocomplete container */
#autocompleteResults {
    background-color: #141336;
    border: 2px solid #1ac8e9; 
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden; 
}


.autocomplete-option {
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #fff;
}

/* Hover effect for options */
.autocomplete-option:hover {
    background-color: #1ac8e9; 
    color: #141336; 
}
