/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
@font-face {
    font-family: "Segoe UI";
    src: url("/assets/fonts/segoe-ui-21c304d3.ttf") format("truetype");
}


body {
    min-height: 100vh;
    background: linear-gradient(120deg, gainsboro, ghostwhite, whitesmoke, lightgray, oldlace) no-repeat center center;
    color: black;
    font-family: "Segoe UI", Arial, sans-serif;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1; 
}

/* GitHub-style pagination */
.pagination {
    padding: 3px;
    margin: 3px;
    text-align: center;
}

.pagination a,
.pagination span {
    padding: 2px 5px;
    margin: 2px;
    border: 1px solid #ddd;
    text-decoration: none;
}

.pagination .current {
    background: #6a737d;
    color: white;
    border-color: #6a737d;
}

.pagination a:hover {
    background: #f3f4f6;
}