/* Enhanced Right Sidebar - Clean & Straight Layout */
.content-box.box {
    display: flex !important;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.app-sidebar.infoSub {
    flex: 0 0 200px !important;
    min-width: 200px !important;
    width: 200px !important;
    float: none !important;
}

.app-main-content.infoMain {
    flex: 1 !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    float: none !important;
}

.sidebar-right.infoRight {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    width: 280px !important;
    float: none !important;
}

.sidebar-right .kbox {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sidebar-right .kbox dt {
    background: #f5f5f5;
    color: #333;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    border-bottom: 1px solid #ddd;
    position: relative;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-right .kbox dt:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #007bff;
}

.sidebar-right .kbox dd {
    padding: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Related Apps - Enhanced Display with More Content */
.related-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
    min-height: 80px;
}

.related-item:last-child {
    border-bottom: none;
}

.related-item:hover {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding-left: 10px;
    padding-right: 10px;
}

.related-item a {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #333;
    width: 100%;
    line-height: 1.4;
    gap: 15px;
}

.related-item a:hover {
    color: #007bff;
}

.related-item img {
    width: 56px !important;
    height: 56px !important;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: transform 0.2s ease !important;
}

.related-item img:hover {
    transform: scale(1.05) !important;
}

.related-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.related-info h4 {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.2em;
    word-wrap: break-word;
    word-break: break-word;
}

.related-info p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    font-weight: 500;
}

.related-info .download-count {
    font-size: 11px;
    color: #007bff;
    background: #e3f2fd;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 500;
    border: 1px solid #bbdefb;
    align-self: flex-start;
}

/* Hot Downloads Ranking - Enhanced Display with More Content */
.ranking-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rank-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
    min-height: 80px;
}

.rank-item:last-child {
    border-bottom: none;
}

.rank-item:hover {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding-left: 10px;
    padding-right: 10px;
}

.rank-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
    border-radius: 50%;
    margin-right: 15px;
    background: #f0f0f0;
    color: #666;
    flex-shrink: 0;
    margin-top: 2px;
}

.rank-item.rank-1 .rank-number {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.rank-item.rank-2 .rank-number {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    box-shadow: 0 2px 4px rgba(78, 205, 196, 0.3);
}

.rank-item.rank-3 .rank-number {
    background: linear-gradient(135deg, #45b7d1, #3498db);
    color: white;
    box-shadow: 0 2px 4px rgba(69, 183, 209, 0.3);
}

.rank-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.rank-info a {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #333;
    line-height: 1.4;
    gap: 15px;
}

.rank-info a:hover {
    color: #007bff;
}

.rank-info img {
    width: 56px !important;
    height: 56px !important;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: transform 0.2s ease !important;
}

.rank-info img:hover {
    transform: scale(1.05) !important;
}

.rank-details {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rank-details h4 {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.2em;
    word-wrap: break-word;
    word-break: break-word;
}

.rank-details p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    font-weight: 500;
}

.hot-badge {
    font-size: 11px;
    color: #ff4757;
    font-weight: 600;
    background: #ffe8e8;
    padding: 3px 8px;
    border-radius: 10px;
    border: 1px solid #ffcdd2;
    align-self: flex-start;
}

/* Latest Updates - Enhanced Display with More Content */
.update-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
    min-height: 80px;
}

.update-item:last-child {
    border-bottom: none;
}

.update-item:hover {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding-left: 10px;
    padding-right: 10px;
}

.update-item a {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #333;
    width: 100%;
    line-height: 1.4;
    gap: 15px;
}

.update-item a:hover {
    color: #007bff;
}

.update-item img {
    width: 56px !important;
    height: 56px !important;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: transform 0.2s ease !important;
}

.update-item img:hover {
    transform: scale(1.05) !important;
}

.update-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.update-info h4 {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.2em;
    word-wrap: break-word;
    word-break: break-word;
}

.update-version {
    margin: 0;
    font-size: 12px;
    color: #007bff;
    font-weight: 600;
    line-height: 1.3;
    background: #e3f2fd;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid #bbdefb;
    align-self: flex-start;
}

.update-time {
    margin: 0;
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    font-weight: 500;
}

/* Category Navigation - 2x3 Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    align-items: stretch;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    text-align: center;
    transition: all 0.2s ease;
    min-height: 60px;
}

.cat-item:hover {
    background: #e8e8e8;
    border-color: #ddd;
}

.cat-icon {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1;
}

.cat-item span {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.cat-item small {
    font-size: 9px;
    color: #999;
    line-height: 1;
}

/* Rating Stats - Clean Layout */
.rating-overview {
    text-align: center;
    margin-bottom: 12px;
}

.overall-rating {
    margin-bottom: 12px;
}

.rating-score {
    font-size: 24px;
    font-weight: bold;
    color: #666;
    display: block;
    line-height: 1;
}

.rating-stars {
    margin: 6px 0;
}

.rating-stars .star {
    font-size: 14px;
    color: #ddd;
    margin: 0 1px;
}

.rating-stars .star.filled {
    color: #ffa500;
}

.rating-overview p {
    font-size: 10px;
    color: #999;
    margin: 6px 0 0 0;
    line-height: 1.3;
}

.rating-breakdown {
    text-align: left;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 10px;
}

.star-label {
    width: 28px;
    color: #666;
    font-weight: 500;
    flex-shrink: 0;
}

.bar-container {
    flex: 1;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    margin: 0 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #ffa500;
    border-radius: 3px;
}

.percentage {
    width: 32px;
    text-align: right;
    color: #999;
    font-size: 9px;
    flex-shrink: 0;
}

/* Quick Links - 2x2 Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    align-items: stretch;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 6px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    min-height: 32px;
}

.quick-link:hover {
    background: #e8e8e8;
    border-color: #ddd;
}

.quick-link i {
    font-size: 12px;
    margin-right: 4px;
    font-style: normal;
}

/* Download Stats - 2x2 Grid */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    align-items: stretch;
}

.stat-item {
    text-align: center;
    padding: 10px 6px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-label {
    display: block;
    font-size: 9px;
    color: #999;
    margin-bottom: 3px;
    font-weight: 500;
    line-height: 1.2;
}

.stat-value {
    display: block;
    font-size: 13px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

/* Security Check - Vertical List */
.security-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.security-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    border-left: 2px solid #4caf50;
}

.security-icon {
    font-size: 14px;
    margin-right: 8px;
    font-style: normal;
}

.security-info h4 {
    margin: 0 0 1px 0;
    font-size: 11px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

.security-info p {
    margin: 0;
    font-size: 9px;
    color: #4caf50;
    font-weight: 500;
    line-height: 1.2;
}

/* Tag Cloud - 2 Column Grid */
.tags-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    align-items: stretch;
}

.tag-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    min-height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag-item:hover {
    background: #e8e8e8;
    color: #333;
    border-color: #ddd;
}

/* Friend Links - Flex Wrap */
.links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.links-list a {
    display: inline-block;
    padding: 5px 8px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 3px;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.links-list a:hover {
    background: #e8e8e8;
    color: #333;
    border-color: #ddd;
}

/* Site Stats - 2x2 Grid */
.stats-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    align-items: stretch;
}

.stat-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    text-align: center;
    min-height: 60px;
}

.stat-icon {
    font-size: 16px;
    margin-bottom: 4px;
    font-style: normal;
    line-height: 1;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin-bottom: 2px;
}

.stat-text {
    font-size: 9px;
    color: #999;
    font-weight: 500;
    line-height: 1.2;
}

/* System Info - Vertical List */
.system-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.system-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.system-item:hover {
    background: #e8e8e8;
    border-color: #ddd;
}

.system-icon {
    font-size: 16px;
    margin-right: 10px;
    font-style: normal;
}

.system-details {
    flex: 1;
    overflow: hidden;
}

.system-details h4 {
    margin: 0 0 1px 0;
    font-size: 11px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.system-details p {
    margin: 0;
    font-size: 9px;
    color: #999;
    line-height: 1.2;
}

.support-badge {
    font-size: 12px;
    color: #4caf50;
    font-style: normal;
}

/* Daily Recommend - Enhanced Cards with More Content */
.daily-item {
    margin-bottom: 18px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: white;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    min-height: 120px;
}

.daily-item:last-child {
    margin-bottom: 0;
}

.daily-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.daily-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.4);
}

.daily-item a {
    display: flex;
    align-items: flex-start;
    padding: 18px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
    line-height: 1.4;
    gap: 18px;
}

.daily-item a:hover {
    background: #f8f9fa;
}

.daily-item img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 10px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid #e0e0e0;
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: transform 0.2s ease !important;
}

.daily-item img:hover {
    transform: scale(1.05) !important;
}

.daily-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.daily-content h4 {
    margin: 0;
    font-size: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.2em;
    word-wrap: break-word;
    word-break: break-word;
}

.daily-content p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    font-weight: 500;
}

.daily-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.daily-rating {
    font-size: 12px;
    color: #ffa500;
    font-weight: 600;
    background: #fff8e1;
    padding: 3px 8px;
    border-radius: 10px;
    border: 1px solid #ffecb3;
}

.daily-size {
    font-size: 11px;
    color: #666;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-box.box {
        flex-direction: column !important;
    }
    
    .app-sidebar.infoSub,
    .app-main-content.infoMain,
    .sidebar-right.infoRight {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
    }
    
    .sidebar-right.infoRight {
        order: 3;
    }
    
    .app-main-content.infoMain {
        order: 2;
    }
    
    .app-sidebar.infoSub {
        order: 1;
    }
}

@media (max-width: 768px) {
    .sidebar-right {
        margin-top: 15px;
        max-width: 100%;
    }
    
    .category-grid,
    .links-grid,
    .stats-container,
    .stats-overview {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .tags-container {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .sidebar-right .kbox {
        margin-bottom: 12px;
    }
    
    .sidebar-right .kbox dt {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .sidebar-right .kbox dd {
        padding: 10px;
    }
}

/* Additional fixes for text overflow and alignment */
.sidebar-right * {
    box-sizing: border-box;
}

.sidebar-right h4,
.sidebar-right .related-info h4,
.sidebar-right .rank-details h4,
.sidebar-right .update-info h4,
.sidebar-right .daily-content h4,
.sidebar-right .system-details h4 {
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* Ensure consistent spacing */
.sidebar-right .kbox:last-child {
    margin-bottom: 0;
}

/* Fix for image loading */
.sidebar-right img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Ensure grid items are properly aligned */
.category-grid,
.links-grid,
.stats-container,
.stats-overview,
.tags-container {
    width: 100%;
}

.category-grid > *,
.links-grid > *,
.stats-container > *,
.stats-overview > *,
.tags-container > * {
    min-width: 0;
    overflow: hidden;
}
/* Additional Layout Fixes for Perfect Alignment */
.sidebar-right {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Ensure all text is properly contained */
.sidebar-right .kbox dt,
.sidebar-right .kbox dd,
.sidebar-right h4,
.sidebar-right p,
.sidebar-right span,
.sidebar-right a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix for long titles that should display longer */
.related-info h4,
.rank-details h4,
.update-info h4,
.daily-content h4,
.system-details h4 {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-height: 2.6em;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ensure grid layouts are perfectly straight */
.category-grid,
.links-grid,
.stats-container,
.stats-overview,
.tags-container {
    display: grid !important;
    align-items: stretch;
    justify-items: stretch;
}

/* Fix any potential flexbox issues */
.related-item,
.rank-item,
.update-item,
.security-item,
.system-item {
    align-items: flex-start;
    min-height: auto;
}

/* Ensure consistent image sizing */
.sidebar-right img {
    object-fit: cover;
    object-position: center;
    background: #f5f5f5;
}

/* Fix for any potential overflow issues */
.sidebar-right .kbox dd > * {
    max-width: 100%;
}

/* Ensure proper text alignment */
.sidebar-right {
    text-align: left;
}

.sidebar-right .kbox dt {
    text-align: left;
}

/* Fix for grid item heights */
.cat-item,
.quick-link,
.stat-item,
.stat-row,
.tag-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Ensure proper spacing between elements */
.sidebar-right .kbox dd > *:last-child {
    margin-bottom: 0 !important;
}

/* Fix for any potential layout shifts */
.sidebar-right * {
    box-sizing: border-box;
}

/* Ensure consistent line heights */
.sidebar-right {
    line-height: 1.4;
}

/* Fix for rating bars alignment */
.rating-bar {
    align-items: center;
    height: 20px;
}

.bar-container {
    align-self: center;
}

/* Ensure proper vertical alignment in flex containers */
.related-item a,
.rank-info a,
.update-item a,
.daily-item a {
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* Fix for security and system items */
.security-item,
.system-item {
    align-items: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
}

.security-icon,
.system-icon {
    margin-top: 2px;
}
/* Override any conflicting CSS from other files */
.content-box.box::after {
    content: "";
    display: table;
    clear: both;
}

/* Ensure the layout works with existing CSS */
.content-box.box {
    overflow: hidden;
    zoom: 1; /* IE fix */
}

/* Force flexbox layout */
.content-box.box > .infoSub,
.content-box.box > .infoMain,
.content-box.box > .infoRight {
    display: block !important;
    position: relative !important;
}

/* Additional clearfix for safety */
.content-box.box::before,
.content-box.box::after {
    content: " ";
    display: table;
}

.content-box.box::after {
    clear: both;
}

/* Ensure sidebar is visible */
.sidebar-right.infoRight {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fix for any potential z-index issues */
.sidebar-right.infoRight {
    z-index: 1;
    position: relative;
}

/* Ensure proper box model */
.content-box.box * {
    box-sizing: border-box;
}