.share-link {
    /* display: inline-block; */
    padding: 15px 0px;
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.copy-btn {
    display: inline-block;
    background-color: #fcfcfc;
    border: 1px solid #ccc;
    /* border-radius: 4px; */
    padding: 3px 50px;
    transition: background-color 0.3s, color 0.3s;
}

.copy-btn:hover {
    background-color: #f0f0f0;
    color: #333;
}

.directory {
    display: flex;
    align-items: right;
    justify-content: space-between;
}

/* Style the select box */
.find-select {
    width: 60%;
    padding: 1px 10px;
    font-size: 14px;
    background-color: #f9f9f9;
    color: #333;
    border-radius: 0px;
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    background: url('../icon/dropdown_arrow.png') no-repeat right center; /* Replace with your custom arrow image */
    background-size: 18px; /* Adjust size of the arrow */
    padding-right: 0px; /* Add space for the arrow */
    border: 1px solid #ccc;
    /* Removes default arrow in some browsers */
    position: relative; /* Position relative for the custom arrow */
}

/* Add a custom arrow */
.find-select::after {
    content: '▼';
    position: absolute;
    right: 10px;
    pointer-events: none;
    color:#981c83
}

/* Style the dropdown options */
.find-select option {
    padding: 10px;
    background-color: #ae2424;
    color: #333;
}

/* Hover effect for options */
.find-select:hover {
    border-color: black;
}

@media(max-width: 600px) {
    .directory {
        flex-direction: column;
        align-items: flex-start;
    }

    .copy-btn {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .share-link {
        padding: 10px 0;
        font-size: 16px;
    }
}