p {
    color: grey;
}
button {
    color: blue;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Courier, monospace;
    background-image: url(https://www.tapeciarnia.pl/tapety/normalne/tapeta-czerwony-mclaren-600lt-spider.jpg);
    background-attachment: fixed;
    background-size: cover;
    font-size: 20px;
    color:black;
}
.main {
    border-style: solid;
    border-color: red;
    border-width: 2px;
    width: 90vw;
    height: 90vh;
    border-radius: 15px;
    padding: 20px;
    position: absolute;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url("https://th.bing.com/th/id/OIP.QrPCIDe4i8G_3iiKGFm7tQHaFB?w=241&h=180&c=7&r=0&o=7&pid=1.7&rm=3");
    background-color: rgba(0, 0, 125, 0.15);
    background-size: cover;
    overflow-y: scroll;
    user-select: none; 
    cursor: grab;
}
.app {
    border-style: solid;
    border-color: red;
    border-width: 2px;
    width: 90vw;
    height: 90vh;
    border-radius: 15px;
    padding: 20px;
    position: absolute;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url("https://www.bing.com/th/id/OIP.B3KEYspaulttGhAH5fl0xgHaEK?w=536&h=270&c=8&rs=1&qlt=90&r=0&o=6&pid=3.1&rm=2");
    background-size: cover;
    overflow-y: scroll;
    user-select: none; 
    cursor: grab;
    display: none;
}
.bottom {
    bottom: 0%;
    position: fixed;
    width: 100%;
    display: flex;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 255, 0.15);
    justify-content: space-between;
    padding: 12px;
    /*Hiding the bottom bar logic - I used Gemini to help me with this*/
    transform: translateY(85%); 
    transition: transform 0.3s ease-in-out; 
}
.bottom:hover {
    transform: translateY(0%);
}
#welcome {
    position: absolute;
}
#app_1 {
    padding-top: 64px; 
    padding-left: 16px;
}
#app_2 {
    padding-top: 64px; 
    padding-left: 16px;
}
#app_3 {
    padding-top: 64px; 
    padding-left: 16px;
}
.app-icon {
    text-align: center; 
    padding: 10px; 
    width: fit-content;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    display: inline-block;
    margin-right: 15px;
    vertical-align: top;
}
#app_1, #app_2, #app_3 {
    display: inline-block;
    margin-right: 15px;
    vertical-align: top;
}
.app1icon .icon-img {
    width: 64px; 
    height: 64px; 
    border-radius: 32px;
    transition: border-radius 0.2s ease;
}

.app2icon .icon-img {
    width: 64px; 
    height: 64px; 
    border-radius: 32px;
    transition: border-radius 0.2s ease;
}

.app3icon .icon-img {
    width: 64px; 
    height: 64px; 
    border-radius: 32px;
    transition: border-radius 0.2s ease;
}

.app-icon .icon-text {
    margin: 0px; 
    color: #aa0000;
}

.app-icon.selected {
    background-color: rgba(0, 0, 255, 0.15);
    border-color: rgba(0, 0, 255, 0.3);
}

.app-icon.selected .icon-img {
    border-radius: 16px;
}

.app-icon.selected .icon-text {
    color: #0000aa;
}
table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
    margin: 10px 0 25px 0;
    font-size: 14px;
}

th, td {
    border: 1px solid rgba(150, 150, 150, 0.05);
    padding: 8px 12px;
    text-align: left;
}

th {
    background-color: rgba(255, 0, 0, 0.5);
    font-weight: bold;
}

td {
    background-color: rgba(0, 255, 255, 0.05);
}