/*
Theme Name:     BuddyBoss Theme
Theme URI:      https://www.buddyboss.com/
Description:    BuddyBoss Theme makes the BuddyBoss Platform look beautiful.
Author:         BuddyBoss
Author URI:     https://www.buddyboss.com/
Version:        2.3.70
*/

/*
This stylesheet is never loaded! No need to add CSS rules here.
*/
/* Style the dropdown container */
.note-privacy-dropdown {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

/* Style the label */
.note-privacy-dropdown label {
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px;
    color: #555;
}

/* Style the dropdown */
#note_privacy {
    width: 160px;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none;    /* For Firefox */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%204%205%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M2%200L0%202h4zm0%205L0%203h4z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Add hover effect */
#note_privacy:hover {
    border-color: #888;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Add focus effect */
#note_privacy:focus {
    border-color: #5b9dd9;
    outline: none;
    box-shadow: 0 0 5px rgba(30, 140, 230, 0.5);
}

/* Style dropdown options */
#note_privacy option {
    padding: 10px;
}
