.apps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.apps a {
    width: 120px;
    font-family: "Montserrat", sans-serif;
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    background-color: rgba(14, 13, 13, 0.459);
    border-radius: 10px;
    transition: 0.1s;
}

.apps img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.apps a:hover {
    transform: scale(1.1);
}

.rounded {
    border-radius: 15px;
}

.pinned-apps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.pinned-apps a {
    width: 120px;
    font-family: "Montserrat", sans-serif;
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    background-color: rgba(14, 13, 13, 0.459);
    border-radius: 10px;
    transition: 0.1s;
}

.pinned-apps img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.pinned-apps a:hover {
    transform: scale(1.1);
}

.rounded {
    border-radius: 15px;
}

.search-bar input {
    margin: 10px;
    padding: 25px;
    height: 40px;
    width: 400px;
    color: white;
    background-color: rgba(7, 7, 7, 0.692);
    font-family: "Montserrat", sans-serif;
    text-align: center;
    border: transparent;
    border-radius: 15px;
    outline: none;
}

.addapp {
    padding: 80px;
    margin: auto;
    position: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(14, 13, 13, 0.267);
    width: fit-content;
    border-radius: 10px;
    border: 1px transparent;
}

#newName::placeholder {
    color: white;
}

#newUrl::placeholder {
    color: white;
}

#newImage::placeholder {
    color: white;
}

.inputapp {
    border-radius: 1px;
    padding: 2px;
}

.buttonapp {
    border-radius: 1px;
    padding: 2.4px 10px;
    text-align: center;
    background-color: rgba(14, 13, 13, 0.267);
    cursor: pointer;
    color: white;
}

.buttonapp:hover {
    background-color: white;
    color: black;
}

.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.784);
}

.modal-content {
    background-color: rgba(14, 13, 13, 0.267);
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #ffffff;
    color: white;
    width: 80%;
    max-width: 500px;
    box-shadow: 3px 3px 6px #292929;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-content h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    color: white;
    background-color: rgba(7, 7, 7, 0.47);
    border: 1px solid white;
    border-radius: 15px;
    outline: none;
}

.modal-content .button-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.modal-content button {
    padding: 10px;
    margin: 10px 5px;
    color: rgba(255, 255, 255, 0.747);
    background: rgba(7, 7, 7, 0.2);
    border-radius: 20px;
    border: 1px solid white;
    cursor: pointer;
}