/* =====================
   BASE
===================== */
body{
    margin:0;
    font-family: system-ui, Arial;
    background:#eef2f5;
}

/* =====================
   HEADER
===================== */
.header{
    position: relative;
    display: flex;
    align-items: center;
    height: 44px;              /* forces single-line height */
    padding: 0 12px;           /* remove vertical padding */
    background: #1e272e;
    color: #fff;
}


.site-title{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;            /* IMPORTANT */
    white-space: nowrap;
}


.menu-btn{
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}


/* Dropdown */
.dropdown-menu{
    display: none;
    position: absolute;
    top: 100%;
    right: 10px;
    width: 190px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
}

.dropdown-menu a{
    display: block;
    padding: 12px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.dropdown-menu a:last-child{
    border-bottom: none;
}

.dropdown-menu a:hover{
    background: #f5f5f5;
}

/* =====================
   SUB HEADER
===================== */
.sub-header{
    background: #34495e;
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 14px;
}

/* =====================
   LAYOUT
===================== */
.container{
    display: flex;
    gap: 12px;
    padding: 12px;
}

.ads{
    width: 22%;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
}

.content{
    width: 78%;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
}


/* =====================
   FORM
===================== */
textarea{
    width: 100%;
    height: 260px;
    padding: 12px;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="url"],
input[type="file"]{
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    box-sizing: border-box;
}

button{
    margin-top: 14px;
    padding: 12px 20px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}









/* =====================
   MOBILE RESPONSIVE
===================== */
/* ===== Mobile Fix ===== */
@media (max-width: 768px){

    .container{
        flex-direction: column;
    }

    .ads{
        order: -1;                 /* show ads first */
        width: 100%;
        margin-bottom: 10px;
        min-height: 100px;         /* ensure visibility */
    }

    .content{
        width: 100%;
    }
}



<!-- for displaying weblink input tag -->
.input-group {
    max-width: 200px;
    margin: 10px 0;
    font-family: Arial, sans-serif;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.input-group input {
    width: 50%;
    padding: 12px 14px;
    font-size: 15px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: all 0.25s ease;
}

.input-group input::placeholder {
    color: #999;
}

.input-group input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}


