.assignments-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.custom-header {
    background-color: #333;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Navigation Button */
.nav-button {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-right: 20px;
    padding: 8px 12px;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Sort Dropdown */
.sort-dropdown select {
    background-color: #444;
    color: #fff;
    border: 1px solid #555;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Assignments Gallery */
.assignments-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* Assignment Card */
.assignment-card {
    border: 1px solid #ddd;
    padding: 10px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Assignment Thumbnail */
.assignment-thumbnail img {
    width: 100%;
    height: auto;
}

/* Document & Default Placeholder */
.document-placeholder,
.default-placeholder {
    background: #f0f0f0;
    padding: 20px;
    text-align: center;
}

.dashicons-media-document,
.dashicons-media-default {
    font-size: 50px;
}

/* Assignment Info */
.assignment-info {
    padding: 10px 0;
}

.assignment-info h3 {
    font-size: 14px;
}

.assignment-info p {
    font-size: 12px;
}

/* Primary Button */
.btn-primary {
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    display: inline-block;
    margin-top: 10px;
    border-radius: 5px;
}


/* Assignment Info Button Styling */
div#assignments-container .assignments-gallery .assignment-info a {
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid #ffd325;
    border-radius: 5px;
}

/* Pagination */
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 14px;
    border: 2px solid #FFD325;
    border-radius: 6px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: #FFD325;
    color: #000 !important;
    border-color: #FFD325;
}

.pagination a.active {
    background-color: #FFD325;
    color: #000 !important;
    font-weight: 700;
    border-color: #FFD325;
    pointer-events: none;
}

.ld-tabs-content div#assignments-container .pagination a.pagination-link {
    border-bottom: 2px solid #ffcc00 !important;!i;!;
}