.content3 {
    background: #040826;
    padding: 80px 0px;
    min-height: 100vh;
    display: block;
    text-align: center;
}

.content3 {
    width: 100%;
}

.kontener {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.content3 h1{
	font-size: 3em;
	color: white;
}

.content3 hr{
	width: 100px;
	border: 1px solid #fff;
}

.FormArea {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.FormArea h2{
	color: white;
}

#filterForm {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

#filterForm select {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    padding: 14px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    text-align: left;
    text-align-last: left; /* penting buat option terpilih */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 14px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;
}

#filterForm select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

#filterForm select option {
    color: #000;
	text-align: left;
}

/* AREA BOX tetap inline */
#areaBox {
    width: 300px;
	text-align: left;
	align-items: left;
}

/* BUTTON */
#filterForm button {
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    background: transparent;
	border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
	width: 140px;
    white-space: nowrap;
}

#filterForm button:hover {
    background: #00bfff;
	color: #040826;
}

@media (max-width: 1000px) {
    #filterForm {
        flex-direction: column;
    }

    #filterForm select,
    #areaBox,
    #filterForm button {
        width: 100%;
        max-width: 100%;
    }
}

        label {
            font-size: 14px;
            font-weight: bold;
        }

        select, button {
            width: 100%;
            padding: 12px;
            margin-top: 8px;
            margin-bottom: 15px;
            border-radius: 10px;
            border: 1px solid #ccc;
            font-size: 14px;
        }

        select:focus {
            border-color: #00bfff;
            outline: none;
        }

        button {
            background: #00bfff;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
        }

        button:hover {
            background: #009acd;
        }

        .hidden {
            display: none;
        }

        @keyframes fadeIn {
            from {opacity: 0; transform: translateY(20px);}
            to {opacity: 1; transform: translateY(0);}
        }

        @media(max-width: 480px){
            .card {
                margin: 30px 15px;
            }
        }