/* Stylowanie kontenera select */
.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    background: none;
    border: none;
    padding-right: 10px;
    z-index: 9999;
    padding: 0px 0px 0px 0px;
}
.select-selected {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    user-select: none;
}
.select-items {
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 1200px;
    overflow-y: auto;
    display: none;
    z-index: 10000;
}
.select-items div {
    padding: 10px;
    cursor: pointer;
}
.select-items div:hover {
    background-color: #ddd;
}
.close-button {
    background-color: royalblue;
    color: #fff;
    border: none;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    width: 100%;
}
