/* common-header.css */
.fixed-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 201;
    background-color: white;
}

.site-header {
    background-color: #4c4748;
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 56px;
    box-sizing: border-box;
}

.logo img {
    height: 36px;
    flex-shrink: 0;
}

.title {
    flex: 1;
    margin: 0 12px;
    display: flex;
    align-items: center;
}

.titledes {
    color: #febc27;
    font-weight: bold;
    font-size: clamp(10px, 4vw, 30px);
    line-height: 1.2;    
    text-overflow: ellipsis;
}

.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    padding: 0 12px;
    background-color: white;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
}

.button,
.button1 {
    padding: 6px 12px;
    font-size: clamp(12px, 3.5vw, 16px);
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    color: green;
    border-radius: 4px;
}

.button1 {
    border: 2px solid #000;
}

.button:hover {
    background-color: #45a049;
    color: white;
}