.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width: 100%;
}

.search-box {
    width: 100%;
    max-width: 600px;
    display: flex;
    border: 2px solid #1877F2; /* Biru Facebook */
    border-radius: 50px; /* Buat bujur */
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    background: #fff;
}

.search-box input[type="text"] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 50px 0 0 50px;
}

.search-box button {
    background: #1877F2;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    border-radius: 0 50px 50px 0;
}

.search-box button:hover {
    background: #145dbf;
}

.search-box button i {
    color: white;
    font-size: 18px;
}

/* Responsive untuk telefon */
@media (max-width: 600px) {
    .search-box {
        max-width: 90%;
    }

    .search-box input[type="text"] {
        font-size: 14px;
        padding: 10px 15px;
    }

    .search-box button {
        padding: 0 18px;
    }

    .search-box button i {
        font-size: 16px;
    }
}
