/* Awards Tab Styles */
.lp-awards-wrap {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.lp-awards-wrap h3 {
    border-bottom: 2px solid #ffc107;
    padding-bottom: 12px;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.lp-awards-wrap h3 i {
    margin-right: 10px;
    color: #ffc107;
}

.lp-awards-wrap p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.awards-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.awards-list .award-item {
    text-align: center;
    max-width: 150px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    transition: transform 0.2s ease;
}

.awards-list .award-item:hover {
    transform: translateY(-5px);
}

.awards-list .award-item img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    border: 3px solid #ffc107;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.awards-list .award-item .award-name {
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
    color: #555;
}

.awards-list .award-item .award-actions {
    margin-top: 15px;
}

.awards-list .award-item .download-award,
.awards-list .award-item .print-award {
    display: block;
    margin: 5px auto;
    width: 100%;
}

/* Lightbox Styles */
.awards-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.awards-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.awards-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.awards-lightbox-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}