/* Main Site */

html {
    font-size: 18px;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 120px;
}

/* Layout */
.footer {
    font-size: 16px;
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
}

/* Custom CSS */

a.text-muted {
    text-decoration: none;
}

.big-card {
    box-shadow: 0px 4px 8px 1px #ccc;
    border-color: rgba(210, 210, 210, 0.7);
}

.card:hover {
    box-shadow: 0px 4px 8px 1px #ccc;
    border-color: rgba(210, 210, 210, 0.7);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.btn-pcf {
    background-color: #742775;
    color: #ffffff;
}

    .btn-pcf:hover {
        background-color: #742775;
        color: #ffffff;
    }

.bg-pcf {
    background-color: #742775;
}

.bg-tag {
    background-color: #999999;
}

.tag-link {
    color: #ffffff;
    text-decoration: none;
}

.bg-tag:hover {
    background-color: #742775;
}

.color-pcf-icons {
    color: #742775;
}

.color-icons {
    color: #999999;
}

    .color-icons:hover {
        color: #742775;
    }

.pagination > li.active > a {
    border-color: #742775;
    background: #742775;
    color: #fff;
}

    .pagination > li.active > a:active {
        color: #fff;
    }

    .pagination > li.active > a:hover {
        color: #fff;
    }

    .pagination > li.active > a:visited {
        color: #fff;
    }

.pagination > li > a {
    color: #742775;
}

    .pagination > li > a:active {
        color: #742775;
    }

    .pagination > li > a:hover {
        color: #742775;
    }

    .pagination > li > a:visited {
        color: #742775;
    }

.close-tag {
    color: #ffffff;
    text-decoration: none;
}

/* Image Preview */
/* Center the preview image */
.image-preview {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; /* Hidden by default */
    width: 300px; /* Adjust size */
    height: auto;
    border: 2px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    z-index: 9999; /* Ensure it appears in front */
}

/* Show the image when hovering over the span */
.hover-trigger:hover + .image-preview {
    display: block;
}