body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
    gap: 20px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 2;
}

button:hover {
    background-color: #45a049;
}

.greeting {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    z-index: 2;
    flex-shrink: 0;
}

/* Reset all images to avoid full width stretching */
img {
    max-width: 100%;
    height: auto;
}

/* Specifically target the welcome image */
img[src="img/logo.webp"] {
    max-width: 512px;
    max-height: 512px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.project-launcher {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-left: auto;
    margin-right: auto;
}

.right-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.project-launcher label {
    font-weight: bold;
    min-width: 80px;
}

.project-launcher select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.project-launcher button {
    padding: 8px 16px;
    font-size: 16px;
    background-color: #007bff;
}

.project-launcher button:hover {
    background-color: #0056b3;
}

#project-launcher-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    min-height: 60vh;
}