.firefox-modal {
    display: none;
    position: fixed;
    top: 20%;
    left: 20%;
    width: 70%;
    height: 85%;
    border: 1px solid #444;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    z-index: 5000;
    border-radius: 6px 6px 6px 6px;
}

.firefox-modal-header {
    background: #585858;
    padding: 5px;
    font-weight: bold;
    color: #fff;
    cursor: move;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px 3px 0px 0px;

}


.firefox-close {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.firefox-close:hover {
    color: red;
}

.firefox-modal-search {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #f1f1f1;
    padding: 8px 20px;
    border-bottom: 1px solid #ccc;
}

.firefox-brand {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 4px;
}

.firefox-brand img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.firefox-brand span {
    font-weight: bold;
    color: #000;
}

.hamburger-container {
    position: relative;
}
.hamburger-menu {
    margin-left: 29px;
    font-size: 20px;
    cursor: pointer;
    padding: 2px 5px;
    border-radius: 4px;
}

.favorite-pages {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 100;
    width: 200px;
    padding: 0;
}

.favorite-pages ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.favorite-pages ul li {
    border-bottom: 1px solid #eee;
}

.favorite-pages ul li:last-child {
    border-bottom: none;
}

.favorite-pages ul li.fav-title {
    background-color: #f7f7f7;
    font-weight: bold;
    padding: 8px 10px;
    border-bottom: 1px solid #ccc;
}

.favorite-pages ul li a {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
}

.favorite-pages ul li a:hover {
    background-color: #f1f1f1;
}

.favorite-pages ul li:not(.fav-title) a::before {
    content: "★";
    margin-right: 5px;
    font-size: 16px;
}

.favorite-pages ul li:nth-child(2) a::before {
    color: rgb(255, 136, 0);
}

.favorite-pages ul li:nth-child(3) a::before {
    color: rgb(255, 238, 0);
}

.favorite-pages ul li:nth-child(4) a::before {
    color: rgb(255, 115, 0);
}

.favorite-pages ul li:nth-child(5) a::before {
    color: orange;
}

.firefox-modal-search input[type="text"] {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.firefox-modal-search button {
    margin-left: 5px;
    padding: 5px 10px;
    border: none;
    background-color: #666666;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.firefox-modal-body {
    height: calc(100% - 100px);
}

.firefox-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}
