/**
 * CSS Styles for FeWorks Site Admin Addon
 */



/* Styles för att lista underordnade sidor till sida */
.silo-section {
    margin-bottom: 40px;
}

.silo-header {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.silo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.silo-item {
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;

}

.silo-item:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.silo-item h3 {
    margin-top: 15px;
	font-size: 1.2em;
}

.silo-list-section {
    margin-bottom: 30px;
}
.random-silo-section {
    margin-bottom: 30px;
}



/* Style for the category section */
.category-section {
    margin: 20px 0;
}

/* Grid layout for category items */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust minmax values as per your requirement */
    grid-gap: 20px;
    justify-content: center;
}

/* Style for each category item */
.category-item {
    border: 1px solid #ddd; /* Optional border */
    padding: 10px;
    text-align: center; /* Center aligns the text */
    background-color: #f9f9f9; /* Light background for each item */
}

/* Style for the featured image */
.category-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px; /* Adds space between the image and the title */
    border-radius: 5px; /* Optional: Rounds the corners of the image */
}

/* Style for the page title */
.category-item h3 {
    margin: 0;
    font-size: 1em; /* Adjust font size as needed */
}









.read-more-button {
    display: inline-block;
    padding: 10px 20px;
	margin-bottom: 2em;
    text-align: center;
    text-decoration: none;
    color: #fff !important;
    background-image: linear-gradient(#0c4c94, #083c76);
    border: none;
    border-radius: 3px;
    font-size: 16px;
    transition: background 0.3s;
}

.read-more-button:hover {
    background-image: linear-gradient(#0f5fb9, #0d53a2);
    color: #fff;
}