body {
    font-family: "Intel Clear", "tahoma", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Notification Banner */
.notification-banner {
    background-color: #FFD000;
    padding: 15px 20px;
    font-size: 18px;
    color: #333;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text {
    font-weight: 400;
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-banner {
    cursor: pointer;
    font-size: 20px;
}

/* Tabs */
.content-wrapper {
    padding: 20px 40px;
}

.tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.tab {
    padding-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #555;
}

.tab.active {
    color: #0071C5;
    border-bottom: 4px solid #0071C5;
}

/* Batch Actions */
.batch-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    padding: 10px 0;
}

.select-all-label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.btn-primary {
    background-color: #0071C5;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover:not(:disabled) {
    background-color: #005a9e;
}

.btn-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 20px;
}

/* Update List */
.update-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Checkbox styling */
.item-checkbox {
    margin-right: 15px;
    transform: scale(1.2);
    cursor: pointer;
}

.accordion-icon {
    color: #0071C5;
    font-size: 20px;
    margin-right: 10px;
    cursor: pointer;
    width: 20px;
    text-align: center;
}

.item-title {
    color: #0071C5;
    font-size: 16px;
    flex-grow: 1;
    cursor: pointer;
}

.item-title:hover {
    text-decoration: underline;
}

.item-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-text {
    font-weight: bold;
    color: #333;
    min-width: 60px;
    text-align: right;
}

.cancel-icon {
    cursor: pointer;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.progress-bar-container {
    height: 8px;
    background-color: #E0E0E0;
    border-radius: 4px;
    margin-left: 55px; /* Align with title (checkbox + icon space) */
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #0071C5;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Expanded Details */
.item-details {
    margin-top: 15px;
    margin-left: 55px; /* Align with title */
    background-color: #F7F7F7;
    padding: 20px;
    border-radius: 4px;
    display: none;
}

.update-item.expanded .item-details {
    display: block;
}

.detail-block p {
    margin: 0 0 10px 0;
    line-height: 1.5;
    font-size: 14px;
}

.meta-info {
    margin-top: 10px;
    color: #333;
}

.item-actions {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}

.info-link {
    color: #0071C5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-link:hover {
    text-decoration: underline;
}

.hide-update {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: #0071C5;
}
