body {
    background-color: #121212;
    margin: 0;
    padding: 0;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 220px;
    background-color: #1e1e1e;
    padding: 1rem;
    overflow-y: auto;
}

.main-content {
    padding: 1rem;
}

.content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.myinsta-logo {
    font-family: "Cookie", cursive;
    text-decoration: none;
    font-size: 3.5rem;
    font-weight: bold;
    color: #4db5ff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background-color: #1e1e1e;
}

.drop-zone__prompt {
    color: #aaa;
    font-size: 1.2rem;
    text-align: center;
    pointer-events: none;
}

.user-profile-link {
    text-decoration: none;
    font-size: large;
    color: whitesmoke;
}

.sidebar footer {
    font-size: 0.658em;
    color: #aaa;
    text-align: center;
    margin-top: 1rem;
}

/* SEARCH feature */
.search-container {
    width: 100%;
    margin-top: 1rem;
}

.search-input {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    width: 100%;
}

.search-results {
    margin-top: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.search-result-item {
    padding: 0.5rem;
    border-bottom: 1px solid #444;
    cursor: pointer;
}

.search-result-item.active {
    background-color: #333;
}

.search-result-item:hover {
    background-color: #333;
}

/* Bottom Navbar for mobile */
.navbar.fixed-bottom {
    display: flex;
    justify-content: space-around;
    background-color: #1e1e1e;
    padding: 0.5rem 0;
}

.navbar.fixed-bottom .nav-link {
    color: #fff;
    font-size: 1.5rem;
}


/* Search mobile */
.modal-content {
    background-color: #1e1e1e;
    color: #fff;
}

.modal-body .form-control {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #fff;
}

.search-results {
    max-height: 200px;
    overflow-y: auto;
}

.search-result-item {
    padding: 0.5rem;
    border-bottom: 1px solid #444;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #333;
}

#searchInputMobile::placeholder {
    color: #aaa;
}