/* Import Inter from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased; /* Makes text look crisper */
}

body {
    background-color: #121212; /* Deep dark grey */
    color: #e0e0e0; /* Soft white text */
}

.breadCrumb {
	font-size: 18px;
	padding: 2px 6px;
}

/* If you have a main container */
.container, .main-content {
    background-color: #1e1e1e; /* Slightly lighter for contrast */
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Deep, soft shadow */
}

.itemsList {
  grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
}

.itemsList .item {
    background-color: #252525;
    background-size: cover;
    background-position: center;
    border: 1px solid #333;
    border-radius: 8px; /* Smooth corners */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth animation */
    padding: 15px;
    box-sizing: border-box;
}

/* Hover Effect - The "Slick" factor */
.item:hover, .grid-item:hover {
    transform: translateY(-4px); /* Lifts the card up slightly */
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: #00A8E8; /* Halcyon Blue accent on hover */
    cursor: pointer;
}

.item .filename {
    font-size: 8px;
}

/* Target the download button specifically */
a.actionBtn {
    background: transparent;
    color: var(--theme-links);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    /* box-shadow: 0 4px 15px rgba(0, 168, 232, 0.4); */
    transition: all 0.3s ease;
    border: 1px solid var(--theme-links);
    font-size: 14px;
}

a.actionBtn:hover {
    box-shadow: 0 0px 20px rgba(0, 168, 232, 0.6);
    transform: scale(1.02);
    color: var(--theme-links);
    background: transparent;
}