/* Fix for Hostco sticky header overlap */
#content {
    padding-top: 0 !important;
}

/* Page Header Section - Add top margin for sticky header */
.page-header-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    margin-top: 80px; /* Default header height */
}

/* Adjust for smaller header */
header.smaller ~ #content .page-header-section {
    margin-top: 60px;
}

/* Adjust for header with topbar */
header.has-topbar ~ #content .page-header-section {
    margin-top: 0px;
}

header.has-topbar.smaller ~ #content .page-header-section {
    margin-top: 100px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .page-header-section {
        margin-top: 70px;
    }
    
    header.has-topbar ~ #content .page-header-section {
        margin-top: 110px;
    }
}

.detail-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255,255,255,0.6);
}

.btn-twitter {
    background: #1DA1F2;
    color: white;
    border: none;
}

.btn-twitter:hover {
    background: #0d8bd9;
    color: white;
}

.btn-facebook {
    background: #4267B2;
    color: white;
    border: none;
}

.btn-facebook:hover {
    background: #365899;
    color: white;
}

/* Card hover effects */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Table styling */
.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.05);
}

/* List group item hover */
.list-group-item {
    transition: background-color 0.3s;
}

.list-group-item:hover {
    background-color: rgba(0,0,0,0.02);
}

/* Badge styling */
.badge {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header-section {
        margin-top: 60px;
    }
    
    .page-header-section h1 {
        font-size: 1.5rem;
    }
}