/* Grundinställningar */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    
    
    display: grid;
    grid-template-rows: auto 1fr auto; 
    min-height: 100vh; 
}

/* Menyn */
.meny {
    background-color: #1a1a1a;
    display: grid;

    grid-template-columns: auto auto; 
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}
.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
.meny ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
   
    grid-auto-flow: column;
    gap: 20px;
}
.meny a {
    color: #bbb;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
}
.meny a:hover { color: #fff; }
.meny a.aktiv {
    color: #fff;
    border-bottom: 2px solid #007bff;
}

/* Innehållsboxen */
.innehall {
    max-width: 1000px;
    width: 100%;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
}

.placeholder-bild {
    background-color: #ddd;
    width: 100%;
    height: 180px; /* Bestämd höjd */
    display: grid;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    font-size: 14px;
    overflow: hidden; 
    position: relative;
}


.placeholder-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
}


.bil-lista {
    display: grid;
   
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    margin-top: 20px;
}
.bil-kort {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    box-sizing: border-box; 
}

/* Forum */
.forum-container {
    margin-top: 25px;
}
.forum-post {
    background-color: #f9f9f9;
    border-left: 4px solid #007bff;
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 0 6px 6px 0;
}
.forum-header {
    display: grid;
    /* Texten till vänster och användarnamnet till höger */
    grid-template-columns: 1fr auto; 
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}
.forum-titel {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 16px;
}
.forum-anvandare {
    color: #777;
    font-size: 13px;
}

/* Blå bottenkant (Footer) */
.bottenkant {
    background-color: #007bff; 
    color: white;
    padding: 20px 0;
    margin-top: 40px;
    width: 100%;
}
.footer-innehall {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    /* Två spalter: Text till vänster, Instagram till höger */
    grid-template-columns: auto auto; 
    justify-content: space-between; 
    align-items: center;
}
.insta-lank {
    color: white;
    text-decoration: none;
    font-weight: bold;
    background-color: rgba(0,0,0,0.2); 
    padding: 8px 15px;
    border-radius: 20px;
}
.insta-lank:hover {
    background-color: rgba(0,0,0,0.4);
}