    * {
        box-sizing: border-box;
    }
    body {
        font-family: Arial, sans-serif;
        background-color: #4a76a8;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    header {
        background-color: #4a76a8;
        padding: 10px 20px;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    header .logo a {
        text-decoration: none; /* Elimină sublinierea specifică linkurilor */
        color: white; /* Textul să fie alb */
        font-weight: bold; /* Îngroșește textul */
        font-size: 24px; /* Dimensiunea textului */
    }

    .logo a:hover {
        color: #f0f0f0; /* Culoare puțin mai deschisă la hover */
    }

    header a:visited {
        color: white; /* Asigură că linkurile vizitate rămân albe */
    }

    header .nav-links a {
        color: white;
        text-decoration: none;
        margin-left: 20px;
        font-size: 16px;
        transition: color 0.3s;
    }
    header .nav-links a:hover {
        color: #d1e7dd;
    }
    .container {
        max-width: 900px;
        width: 90%;
        margin: 20px auto;
        padding: 20px;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
    }
    h2 {
        color: #111;
        font-size: 26px;
        text-align: center;
        margin-bottom: 20px;
    }
    .search-box {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
        position: relative; /* Pentru a poziționa sugestiile */
        width: 100%;
    }
    .search-box input[type="text"] {
        padding: 10px;
        width: 70%;
        max-width: 400px;
        border: 2px solid #007bff;
        border-radius: 5px;
        font-size: 16px;
        outline: none;
    }
    .search-box input[type="submit"] {
        padding: 10px 20px;
        border: none;
        background-color: #007bff;
        color: white;
        cursor: pointer;
        border-radius: 5px;
        font-size: 16px;
        transition: background-color 0.3s;
    }
    .search-box input[type="submit"]:hover {
        background-color: #0056b3;
    }
    .suggestions-box {
        border-radius: 5px;
        position: absolute;
        top: 100%;
        left: 20,5%; /* Aliniere direct sub input */
        background-color: #ffffff;
        border: 1px solid #ddd;
        border-top: none;
        max-height: 300px;
        width: 100%; /* Aceeași lățime ca input-ul */
        max-width: 510px;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }
    .suggestion-item {
        padding: 10px 15px;
        cursor: pointer;
        transition: background-color 0.2s, color 0.2s;
    }
    .suggestion-item:hover, .suggestion-item.active {
        background-color: #007bff;
        color: #ffffff;
    }
    .results {
        margin-top: 20px;
        flex-grow: 1;
        overflow-y: auto;
    }
    .results .result-card {
        padding: 15px;
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }
    .results a {
        text-decoration: none;
        color: #007bff;
        font-weight: bold;
        flex-grow: 1;
    }
    .results a:before {
        content: "♪ "; /* Nota muzicală */
        color: #007bff;
        font-size: 18px;
        margin-right: 5px;
    }
    .results a:hover {
        text-decoration: underline;
    }
    .recent-searches {
        margin-top: 30px;
        text-align: center;
        overflow-y: auto;
        padding-bottom: 20px;
    }
    .recent-searches h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .recent-searches ul {
        padding: 0;
        list-style-type: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .recent-searches li {
        display: inline-block;
        margin: 5px 10px;
        white-space: nowrap;
    }
    .recent-searches a {
        color: #6c757d;
        text-decoration: none;
        display: block;
        padding: 5px 10px;
        border-radius: 4px;
        transition: background-color 0.3s;
        background-color: #e9ecef;
    }
    .recent-searches a:hover {
        background-color: #f0f0f0;
    }
    footer {
        background-color: #222;
        padding: 20px;
        text-align: center;
        color: white;
        width: 100%;
        margin-top: 20px;
    }
    footer .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin: 10px 0;
        gap: 15px;
    }
    footer .footer-links a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }
    footer .footer-links a:hover {
        color: #337ab7;
    }
    footer p {
        margin: 0;
        font-size: 12px;
    }

    /* Media Queries pentru Responsive Design */
    @media (max-width: 768px) {
        .container {
            width: 95%;
            margin: 20px auto;
            padding: 15px;
        }
        .search-box input[type="text"] {
            width: 100%;
            max-width: none;
        }
        .search-box input[type="submit"] {
            width: 100%;
            max-width: none;
        }
        header {
            flex-direction: column;
            align-items: flex-start;
        }
        header .nav-links {
            margin-top: 10px;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        .recent-searches ul {
            flex-direction: column;
            align-items: center;
        }
        h2 {
            font-size: 22px; /* Titlu mai mic pe ecrane mici */
        }
        .suggestions-box {
            width: 100%;
            left: 0;
            max-width: none;
        }
    }

    @media (max-width: 480px) {
        h2 {
            font-size: 20px; /* Titlu și mai mic pe ecrane foarte mici */
        }
        .search-box input[type="text"], .search-box input[type="submit"] {
            font-size: 14px;
        }
        .suggestion-item {
            padding: 8px 12px;
            font-size: 14px;
        }
        .recent-searches h3 {
            font-size: 18px;
        }
        footer .footer-links a {
            font-size: 12px;
        }
    }