body {
    font-family: Arial, sans-serif;
    background-color: #F4F5FA;
    padding: 20px;
}

.mat-form-field {
    position: relative;
    width: 300px;
}

.label {
    font-size: 12px;
    color: #555;
    margin-bottom: 4px;
}

.mat-select {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.selected {
    display: flex;
    align-items: center;
}

.flag {
    width: 24px;
    height: 16px;
    margin-right: 8px;
}

.arrow {
    font-size: 16px;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    z-index: 1;
}

.option {
    padding: 10px;
    cursor: pointer;
}

.option:hover {
    background-color: #f0f0f0;
}