
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #222;
}
.topbar {
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo {
    font-weight: bold;
    font-size: 1.4rem;
    color: #0078d4;
    text-decoration: none;
}
.menu {
    display: flex;
    gap: 1rem;
}
.menu a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
}
.menu a:hover {
    text-decoration: underline;
}
.search-bar {
    max-width: 500px;
    margin: 2rem auto;
    display: flex;
}
.search-bar input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}
.search-bar button {
    background: #0078d4;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.search-bar button:hover {
    background: #005ea2;
}

/* Menú desplegable lateral derecho */
.apps-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    right: 0;
    top: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 4px;
    padding: 0.5rem 0;
}

.apps-dropdown a {
    color: black;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: block;
}

.apps-dropdown a:hover {
    background-color: #f0f0f0;
}
