body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.dropdown {
    position: relative;
    width: 200px;
}

select {
    width: 100%;
    padding: 10px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    appearance: none; /* Remove default arrow */
    cursor: pointer;
    transition: border-color 0.3s;
}

select:focus {
    border-color: #0056b3; /* Darker blue on focus */
    outline: none;
}

select option {
    padding: 10px;
}

/* Custom Arrow */
.dropdown::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    border: solid transparent;
    border-width: 5px 5px 0;
    border-top-color: #007BFF;
    pointer-events: none;
}

.dropdown:hover select {
    border-color: #0056b3; /* Dark blue on hover */
}

.btn{
    background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
             width: 100%;
       
}