/* Reset some basic elements */
body, h1, h2, p, ul, li, nav, section, footer {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header and Navigation Styles */
header {
    background-color: #333;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}

 /* Style the navigation bar */
    nav {
        background-color: #343a40; /* Dark background for contrast */
        padding: 10px 20px; /* Padding around the navigation */
    }

    /* Remove default list styling */
    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex; /* Display the list items inline */
        justify-content: center; /* Center the list items horizontally */
    }

    /* Style each list item for spacing */
    nav li {
        margin: 0 10px; /* Spacing between each button */
    }

    /* General style for the links as buttons */
    nav a {
        background-color: #007bff; /* Bootstrap primary color for the button */
        color: white; /* White text color */
        text-decoration: none; /* Remove underline from links */
        padding: 10px 15px; /* Padding inside the button */
        border-radius: 5px; /* Rounded corners for the button */
        transition: background-color 0.3s; /* Smooth transition for hover effect */
        display: block; /* Change display to block to enable padding */
    }

    /* Hover effect for buttons */
    nav a:hover {
        background-color: #0056b3; /* Darker shade for hover */
        text-decoration: none; /* Ensure underline doesn't reappear on hover */
    }
/* Main Content Area Styles */
main {
    padding: 20px;
}

.model-introduction, .live-cams, .top-models {
    margin-bottom: 20px;
}

.model-introduction h1, .live-cams h2, .top-models h2 {
    color: #333;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin-bottom: 15px;
    }
}
.cam_article {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cam_postheader a {
    color: #007BFF;
    text-decoration: none;
}

.image-caption-wrapper {
    margin-bottom: 20px;
}

#object_container {
    width: 100%;
    height: 360px;
    background-color: #eee; /* Placeholder background */
}

.rating {
    margin-bottom: 20px;
}

.fa-star {
    color: #ffd700;
}

.checked {
    color: orange;
}

blockquote {
    margin-top: 20px;
    background: #f9f9f9;
    padding: 10px 20px;
    border-left: 5px solid #ccc;
}

.cam_postmetadataheader,
.cam_postheadericons {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.cam_postcontent-1 {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Ensure the images and links container is centered */
    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Style for each item */
    .item {
        flex-basis: calc(33.33% - 20px); /* Adjust for padding */
        padding: 10px;
        text-align: center;
    }

    /* Rounded images */
    .rounded-image {
        border-radius: 50%; /* Make images rounded */
        width: 100%;
        height: auto;
    }

    /* Maroon links without text decoration */
    a {
        color: maroon; /* Maroon color for links */
        text-decoration: none;
    }

    /* Style for the bottom part of the item */
    .bottom-text {
        background-color: #28a745; /* Bootstrap success color */
        color: white;
        text-align: center;
        border-radius: 0 0 8px 8px; /* Rounded bottom */
        padding: 5px 0; /* Padding for spacing */
        box-shadow: 0 2px 2px rgba(0,0,0,0.2); /* Slight shadow for depth */
    }

/* Container to ensure everything is centered and wraps as needed */
    .link-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Styling each link container */
    .link-item {
        flex-basis: calc(16.66% - 10px); /* Adjust flex basis for 6 items per row, accounting for margin */
        margin: 5px; /* Provide some spacing between items */
        text-align: center;
    }

    /* Maroon links with rounded bottom background */
    .link-item a {
        color: maroon; /* Maroon color for links */
        text-decoration: none;
        display: block; /* Make the link fill the container for better clickability */
        padding: 10px 0; /* Padding for spacing */
    }

    /* Rounded bottom container for each link */
    .link-background {
        background-color: #28a745; /* Bootstrap success color */
        color: white;
        border-radius: 0 0 8px 8px; /* Rounded bottom */
        box-shadow: 0 2px 2px rgba(0,0,0,0.2); /* Slight shadow for depth */
    }

/* Grid Layout for Related Models */
.related-models-grid {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to the next row */
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none; /* Remove bullets */
}

.related-models-grid li {
    flex: 1 0 21%; /* 21% width for 4 columns, with space between */
    margin: 10px 0;
    text-align: center;
}


