/* =========================== */
/*         HEADER.CSS          */
/* =========================== */

header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #070e2a;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Keep old styles */
}




.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #6c63a2;
    padding: 7px 7px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar .menu {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    list-style: none;
    gap: 15px;
}

.navbar .nav-icon {
    background-color: #4b3c8b;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.navbar .nav-icon a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

/* =========================== */
/*      PUBLIC PROFILE CSS     */
/* =========================== */
.profile-container {
    width: 80%;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cover-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
}

/* =========================== */
/*        SIGNUP LOGIN CSS     */
/* =========================== */
.auth-container {
    width: 40%;
    margin: 50px auto;
    padding: 30px;
    background: #bbc0da;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.auth-container input {
    background: #d7dde5 ;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* =========================== */
/*        NEWS FEED CSS        */
/* =========================== */
.news-feed {
    width: 60%;
    margin: 20px auto;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news-post {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.news-post:last-child {
    border-bottom: none;
}

/* =========================== */
/*        NOTIFICATIONS CSS    */
/* =========================== */
.notifications-container {
    width: 50%;
    margin: 20px auto;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.notification-item:last-child {
    border-bottom: none;
}
