* {
    box-sizing: border-box;
}

body.azure-no-scroll {
    overflow: hidden;
}


.azure-site-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg,
            rgba(0, 122, 204, 0.05) 0%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(0, 122, 204, 0.03) 100%);
    overflow: hidden;
}

.azure-bg-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.azure-shape {
    position: absolute;
    opacity: 0.02;
    animation: azureFloat 25s infinite linear;
}

.azure-shape-1 {
    top: 15%;
    left: 10%;
    width: 120px;
    height: 120px;
    background: #007acc;
    border-radius: 50%;
    animation-delay: 0s;
}

.azure-shape-2 {
    top: 50%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: #007acc;
    transform: rotate(45deg);
    animation-delay: -7s;
}

.azure-shape-3 {
    bottom: 25%;
    left: 20%;
    width: 80px;
    height: 80px;
    background: #007acc;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -14s;
}

.azure-shape-4 {
    top: 30%;
    right: 30%;
    width: 60px;
    height: 60px;
    background: #007acc;
    border-radius: 20%;
    animation-delay: -10s;
}

@keyframes azureFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-25px) rotate(90deg);
    }

    50% {
        transform: translateY(0px) rotate(180deg);
    }

    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}


.azure-site-container {
    min-height: 100vh;
    padding: 20px 0 60px;
}

.azure-site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


.azure-breadcrumb {
    margin-bottom: 30px;
}

.azure-breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 122, 204, 0.08);
    border: 1px solid rgba(0, 122, 204, 0.1);
}

.azure-breadcrumb-item {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.azure-breadcrumb-item:hover {
    color: #007acc;
}

.azure-breadcrumb-current {
    color: #2c3e50;
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.azure-breadcrumb-separator {
    color: #bdc3c7;
}


.azure-site-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.azure-site-main {
    min-width: 0;
}


.azure-site-header-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 122, 204, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.azure-site-header-card.azure-loaded {
    opacity: 1;
    transform: translateY(0);
}

.azure-site-hero {
    display: flex;
    gap: 25px;
    padding: 40px;
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
    border-bottom: 1px solid rgba(0, 122, 204, 0.1);
}

.azure-site-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.1);
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.azure-site-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.azure-site-info {
    flex: 1;
    min-width: 0;
}

.azure-site-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.azure-site-title i {
    color: #007acc;
    font-size: 30px;
}

.azure-site-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.azure-site-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.azure-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #95a5a6;
    font-size: 14px;
}

.azure-meta-item i {
    color: #007acc;
    font-size: 16px;
}


.azure-site-actions {
    display: flex;
    gap: 15px;
    padding: 30px 40px;
    background: #f8fbff;
    flex-wrap: wrap;
}

.azure-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.azure-btn-primary {
    background: #007acc;
    color: #fff;
}

.azure-btn-primary:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 204, 0.4);
}

.azure-btn-secondary {
    background: #fff;
    color: #7f8c8d;
    border-color: #e9ecef;
}

.azure-btn-secondary:hover,
.azure-btn-secondary.azure-liked {
    background: #e74c3c;
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.azure-btn-outline {
    background: transparent;
    color: #7f8c8d;
    border-color: #e9ecef;
}

.azure-btn-outline:hover,
.azure-btn-outline.azure-collected {
    background: #007acc;
    color: #fff;
    border-color: #007acc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 204, 0.3);
}

.azure-btn-danger {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.azure-btn-danger:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.azure-action-text {
    font-weight: 500;
}

.azure-action-count {
    font-size: 12px;
    opacity: 0.8;
}


.azure-stats-section,
.azure-details-section,
.azure-benefits-section,
.azure-security-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 122, 204, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.azure-stats-section.azure-loaded,
.azure-details-section.azure-loaded,
.azure-benefits-section.azure-loaded,
.azure-security-section.azure-loaded {
    opacity: 1;
    transform: translateY(0);
}

.azure-section-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8fbff 0%, #e9f4ff 100%);
    border-bottom: 1px solid rgba(0, 122, 204, 0.1);
}

.azure-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.azure-section-title i {
    color: #007acc;
    font-size: 22px;
}

.azure-section-desc {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}


.azure-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0, 122, 204, 0.1);
}

.azure-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: #fff;
    transition: all 0.3s ease;
}

.azure-stat-item:hover {
    background: #f8fbff;
    transform: translateY(-2px);
}

.azure-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #007acc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.azure-stat-content {
    flex: 1;
}

.azure-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.azure-stat-label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
    margin-bottom: 3px;
}

.azure-stat-trend {
    font-size: 12px;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 3px;
}

.azure-stat-trend i {
    font-size: 10px;
}


.azure-star-rating {
    display: flex;
    gap: 2px;
    height: 20px;
}

.azure-star-rating i {
    color: #e9ecef;
    font-size: 16px;
    transition: all 0.3s ease;
}

.azure-star-rating i.active {
    color: #f39c12;
}


.azure-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(0, 122, 204, 0.1);
}

.azure-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: #fff;
    transition: all 0.3s ease;
}

.azure-detail-item:hover {
    background: #f8fbff;
}

.azure-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 122, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007acc;
    font-size: 18px;
    flex-shrink: 0;
}

.azure-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.azure-detail-label {
    font-weight: 500;
    color: #7f8c8d;
    font-size: 12px;
}

.azure-detail-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.azure-domain-link {
    color: #007acc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.azure-domain-link:hover {
    color: #0066cc;
    text-decoration: underline;
}


.azure-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
}

.azure-benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8fbff;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.azure-benefit-item:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 122, 204, 0.1);
}

.azure-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #007acc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.azure-benefit-content {
    flex: 1;
}

.azure-benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.azure-benefit-content p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

.azure-benefit-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    background: #007acc;
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.azure-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
}

.azure-security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8fbff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.azure-security-item.azure-security-safe {
    border-left-color: #27ae60;
}

.azure-security-item.azure-security-warning {
    border-left-color: #f39c12;
}

.azure-security-item.azure-security-danger {
    border-left-color: #e74c3c;
}

.azure-security-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.azure-security-safe .azure-security-icon {
    background: #27ae60;
}

.azure-security-warning .azure-security-icon {
    background: #f39c12;
}

.azure-security-danger .azure-security-icon {
    background: #e74c3c;
}

.azure-security-content {
    flex: 1;
}

.azure-security-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.azure-security-content p {
    font-size: 12px;
    color: #7f8c8d;
    margin: 0;
}

.azure-security-status {
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

.azure-security-safe .azure-security-status {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.azure-security-warning .azure-security-status {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.azure-security-danger .azure-security-status {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}


.azure-site-sidebar {
    position: relative;
}

.azure-sidebar-sticky {
    position: sticky;
    top: 100px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 122, 204, 0.5) rgba(0, 122, 204, 0.1);
}

.azure-sidebar-sticky::-webkit-scrollbar {
    width: 6px;
}

.azure-sidebar-sticky::-webkit-scrollbar-track {
    background: rgba(0, 122, 204, 0.1);
    border-radius: 3px;
    margin: 5px;
}

.azure-sidebar-sticky::-webkit-scrollbar-thumb {
    background: rgba(0, 122, 204, 0.5);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.azure-sidebar-sticky::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 122, 204, 0.7);
}

.azure-sidebar-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 122, 204, 0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.azure-sidebar-card.azure-loaded {
    opacity: 1;
    transform: translateY(0);
}

.azure-card-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8fbff 0%, #e9f4ff 100%);
    border-bottom: 1px solid rgba(0, 122, 204, 0.1);
}

.azure-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.azure-card-title i {
    color: #007acc;
    font-size: 18px;
}


.azure-tools-list {
    padding: 20px;
    display: grid;
    gap: 12px;
}

.azure-tool-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8fbff;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.azure-tool-link:hover {
    background: #007acc;
    color: #fff;
    border-color: #007acc;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.2);
}

.azure-tool-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 122, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007acc;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.azure-tool-link:hover .azure-tool-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.azure-tool-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.azure-tool-name {
    font-weight: 500;
    font-size: 14px;
}

.azure-tool-desc {
    font-size: 12px;
    opacity: 0.8;
}


.azure-related-sites {
    padding: 20px;
}

.azure-related-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    margin-bottom: 15;

}

.azure-related-item:hover {
    background: #fff;
    border-color: #007acc;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.1);
}

.azure-related-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.azure-related-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.azure-related-content {
    flex: 1;
    min-width: 0;
}

.azure-related-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.azure-related-desc {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.azure-related-arrow {
    color: #bdc3c7;
    font-size: 12px;
    transition: all 0.3s ease;
}

.azure-related-item:hover .azure-related-arrow {
    color: #007acc;
    transform: translateX(3px);
}

.azure-no-related {
    text-align: center;
    padding: 40px 20px;
    color: #95a5a6;
}

.azure-no-related i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}


.azure-tips-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.azure-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #7f8c8d;
}

.azure-tip-item i {
    color: #27ae60;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}


.azure-share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.azure-share-overlay.azure-show {
    opacity: 1;
    visibility: visible;
}

.azure-share-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 122, 204, 0.2);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.azure-share-popup.azure-show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.azure-share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 122, 204, 0.1);
    background: linear-gradient(135deg, #f8fbff 0%, #e9f4ff 100%);
}

.azure-share-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.azure-share-close {
    width: 32px;
    height: 32px;
    background: rgba(0, 122, 204, 0.1);
    border: none;
    border-radius: 50%;
    color: #007acc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.azure-share-close:hover {
    background: #007acc;
    color: #fff;
    transform: rotate(90deg);
}

.azure-share-content {
    padding: 30px;
}

.azure-share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.azure-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: #f8fbff;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.azure-share-btn:hover {
    background: #007acc;
    color: #fff;
    border-color: #007acc;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.2);
}

.azure-share-btn-icon {
    width: 48px;
    height: 48px;
    background: #007acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.azure-share-btn:hover .azure-share-btn-icon {
    background: #fff;
    color: #007acc;
    transform: scale(1.1);
}

.azure-share-btn span {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.azure-share-btn:hover span {
    color: #fff;
}

.azure-share-url-section {
    border-top: 1px solid rgba(0, 122, 204, 0.1);
    padding-top: 25px;
}

.azure-share-url-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
}

.azure-share-url-box {
    display: flex;
    gap: 10px;
}

.azure-share-url {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    background: #f8fbff;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

.azure-share-url:focus {
    outline: none;
    border-color: #007acc;
}

.azure-share-copy {
    padding: 12px 20px;
    background: #007acc;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.azure-share-copy:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.3);
}


.azure-report-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.azure-report-overlay.azure-show {
    opacity: 1;
    visibility: visible;
}

.azure-report-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 122, 204, 0.2);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.azure-report-popup.azure-show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.azure-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(0, 122, 204, 0.1);
    background: linear-gradient(135deg, #f8fbff 0%, #e9f4ff 100%);
}

.azure-report-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.azure-report-close {
    width: 32px;
    height: 32px;
    background: rgba(0, 122, 204, 0.1);
    border: none;
    border-radius: 50%;
    color: #007acc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.azure-report-close:hover {
    background: #007acc;
    color: #fff;
    transform: rotate(90deg);
}

.azure-report-content {
    padding: 30px;
}

.azure-form-group {
    margin-bottom: 25px;
}

.azure-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
}

.azure-report-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.azure-radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8fbff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.azure-radio-item:hover {
    background: #e9f4ff;
    border-color: #007acc;
}

.azure-radio-item input[type="radio"] {
    margin: 0;
}

.azure-radio-item input[type="radio"]:checked+.azure-radio-text {
    color: #007acc;
    font-weight: 500;
}

.azure-radio-text {
    font-size: 14px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.azure-report-textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.azure-report-textarea:focus {
    outline: none;
    border-color: #007acc;
}

.azure-report-email {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.azure-report-email:focus {
    outline: none;
    border-color: #007acc;
}

.azure-char-count {
    text-align: right;
    font-size: 12px;
    color: #95a5a6;
    margin-top: 5px;
}

.azure-char-count.azure-warning {
    color: #e74c3c;
}

.azure-report-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.azure-btn-cancel {
    padding: 12px 25px;
    background: #95a5a6;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.azure-btn-cancel:hover {
    background: #7f8c8d;
}

.azure-btn-submit {
    padding: 12px 25px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.azure-btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}


.azure-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #007acc;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.azure-toast.azure-show {
    transform: translateX(0);
}

.azure-toast-content {
    display: flex;
    align-items: center;
    gap: 8px;
}


@keyframes azureBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.azure-bounce {
    animation: azureBounce 0.6s ease;
}

.azure-star-animate {
    animation: azureStarGlow 0.5s ease;
}

@keyframes azureStarGlow {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.azure-security-animate {
    animation: azureSlideIn 0.5s ease;
}

@keyframes azureSlideIn {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.azure-badge-bounce {
    animation: azureBadgeBounce 0.3s ease;
}

@keyframes azureBadgeBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}


@media (max-width: 1200px) {
    .azure-site-layout {
        grid-template-columns: 1fr 280px;
        gap: 30px;
    }

    .azure-site-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .azure-site-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .azure-site-sidebar {
        order: 1;
    }

    .azure-sidebar-sticky {
        position: static;
        max-height: none;
        overflow-y: visible;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .azure-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .azure-details-grid {
        grid-template-columns: 1fr;
    }

    .azure-benefits-grid {
        grid-template-columns: 1fr;
    }

    .azure-security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .azure-site-container {
        padding: 15px 0 40px;
    }

    .azure-site-wrapper {
        padding: 0 10px;
    }

    .azure-breadcrumb {
        margin-bottom: 20px;
    }

    .azure-breadcrumb-content {
        padding: 10px 15px;
        font-size: 13px;
        flex-wrap: wrap;
    }

    .azure-breadcrumb-current {
        max-width: 150px;
    }

    .azure-site-hero {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        text-align: center;
    }

    .azure-site-icon {
        align-self: center;
    }

    .azure-site-title {
        font-size: 24px;
        justify-content: center;
    }

    .azure-site-meta {
        justify-content: center;
        gap: 15px;
    }

    .azure-site-actions {
        padding: 20px;
        justify-content: center;
        gap: 10px;
    }

    .azure-action-btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }

    .azure-section-header {
        padding: 20px 20px;
    }

    .azure-section-title {
        font-size: 18px;
    }

    .azure-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
        background: transparent;
    }

    .azure-stat-item {
        padding: 20px 15px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 122, 204, 0.05);
    }

    .azure-details-grid {
        padding: 15px;
        background: transparent;
        gap: 10px;
    }

    .azure-detail-item {
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 122, 204, 0.05);
    }

    .azure-benefits-grid {
        padding: 20px;
        gap: 15px;
    }

    .azure-benefit-item {
        padding: 15px;
    }

    .azure-security-grid {
        padding: 20px;
        gap: 15px;
    }

    .azure-security-item {
        padding: 15px;
    }

    .azure-sidebar-sticky {
        grid-template-columns: 1fr;
    }

    .azure-tools-list {
        padding: 15px;
    }

    .azure-related-sites {
        padding: 15px;
    }

    .azure-tips-content {
        padding: 15px;
    }

    .azure-share-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .azure-share-btn {
        padding: 15px 10px;
    }

    .azure-share-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .azure-share-url-box {
        flex-direction: column;
        gap: 10px;
    }

    .azure-share-copy {
        width: 100%;
        justify-content: center;
    }

    .azure-report-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .azure-site-container {
        padding: 10px 0 30px;
    }

    .azure-site-wrapper {
        padding: 0 5px;
    }

    .azure-breadcrumb-content {
        padding: 8px 12px;
        font-size: 12px;
    }

    .azure-site-hero {
        padding: 20px 15px;
    }

    .azure-site-title {
        font-size: 20px;
        flex-direction: column;
        gap: 5px;
    }

    .azure-site-title i {
        font-size: 24px;
    }

    .azure-site-description {
        font-size: 14px;
    }

    .azure-site-meta {
        flex-direction: column;
        gap: 8px;
    }

    .azure-site-actions {
        padding: 15px;
        flex-direction: column;
    }

    .azure-action-btn {
        width: 100%;
        justify-content: center;
    }

    .azure-section-header {
        padding: 15px 15px;
    }

    .azure-section-title {
        font-size: 16px;
        gap: 8px;
    }

    .azure-section-title i {
        font-size: 18px;
    }

    .azure-section-desc {
        font-size: 13px;
    }

    .azure-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }

    .azure-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .azure-stat-value {
        font-size: 20px;
    }

    .azure-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }

    .azure-detail-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .azure-benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 12px;
    }

    .azure-benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        align-self: center;
    }

    .azure-benefit-content h4 {
        font-size: 15px;
    }

    .azure-benefit-content p {
        font-size: 13px;
    }

    .azure-security-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }

    .azure-security-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .azure-security-content h4 {
        font-size: 13px;
    }

    .azure-security-content p {
        font-size: 11px;
    }

    .azure-tool-link {
        padding: 10px 12px;
        gap: 10px;
    }

    .azure-tool-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .azure-tool-name {
        font-size: 13px;
    }

    .azure-tool-desc {
        font-size: 11px;
    }

    .azure-related-item {
        padding: 10px 12px;
        gap: 10px;
    }

    .azure-related-icon {
        width: 28px;
        height: 28px;
    }

    .azure-related-title {
        font-size: 13px;
    }

    .azure-related-desc {
        font-size: 11px;
    }

    .azure-tip-item {
        font-size: 12px;
        gap: 6px;
    }

    .azure-tip-item i {
        font-size: 12px;
    }

    .azure-share-popup {
        width: 95%;
        max-height: 90vh;
    }

    .azure-share-header {
        padding: 20px 20px;
    }

    .azure-share-title {
        font-size: 16px;
    }

    .azure-share-close {
        width: 28px;
        height: 28px;
    }

    .azure-share-content {
        padding: 20px;
    }

    .azure-share-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .azure-share-btn {
        padding: 15px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }

    .azure-share-btn-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .azure-share-btn span {
        font-size: 13px;
    }

    .azure-share-url-section {
        padding-top: 20px;
    }

    .azure-share-url-label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .azure-share-url {
        padding: 10px 12px;
        font-size: 13px;
    }

    .azure-share-copy {
        padding: 10px 15px;
        font-size: 13px;
    }

    .azure-report-popup {
        width: 95%;
        max-height: 90vh;
    }

    .azure-report-header {
        padding: 20px 20px;
    }

    .azure-report-title {
        font-size: 16px;
    }

    .azure-report-close {
        width: 28px;
        height: 28px;
    }

    .azure-report-content {
        padding: 20px;
    }

    .azure-form-group {
        margin-bottom: 20px;
    }

    .azure-form-label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .azure-radio-item {
        padding: 8px 12px;
    }

    .azure-radio-text {
        font-size: 13px;
    }

    .azure-report-textarea {
        min-height: 100px;
        padding: 12px 15px;
        font-size: 13px;
    }

    .azure-report-email {
        padding: 10px 12px;
        font-size: 13px;
    }

    .azure-char-count {
        font-size: 11px;
    }

    .azure-report-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .azure-btn-cancel,
    .azure-btn-submit {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }

    .azure-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }

    .azure-toast.azure-show {
        transform: translateY(0);
    }
}


@media (prefers-color-scheme: dark) {
    body.azure-dark-mode {
        background: #1a1a1a;
        color: #e0e0e0;
    }

    body.azure-dark-mode .azure-site-bg {
        background: linear-gradient(135deg,
                rgba(0, 122, 204, 0.1) 0%,
                rgba(26, 26, 26, 0.95) 50%,
                rgba(0, 122, 204, 0.05) 100%);
    }

    body.azure-dark-mode .azure-breadcrumb-content {
        background: rgba(45, 45, 45, 0.9);
        border-color: rgba(0, 122, 204, 0.3);
    }

    body.azure-dark-mode .azure-breadcrumb-item {
        color: #bdc3c7;
    }

    body.azure-dark-mode .azure-breadcrumb-current {
        color: #e0e0e0;
    }

    body.azure-dark-mode .azure-site-header-card,
    body.azure-dark-mode .azure-stats-section,
    body.azure-dark-mode .azure-details-section,
    body.azure-dark-mode .azure-benefits-section,
    body.azure-dark-mode .azure-security-section,
    body.azure-dark-mode .azure-sidebar-card,
    body.azure-dark-mode .azure-share-popup,
    body.azure-dark-mode .azure-report-popup {
        background: #2d2d2d;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    body.azure-dark-mode .azure-site-hero,
    body.azure-dark-mode .azure-section-header,
    body.azure-dark-mode .azure-card-header,
    body.azure-dark-mode .azure-share-header,
    body.azure-dark-mode .azure-report-header {
        background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
        border-bottom-color: rgba(0, 122, 204, 0.3);
    }

    body.azure-dark-mode .azure-site-title,
    body.azure-dark-mode .azure-section-title,
    body.azure-dark-mode .azure-card-title,
    body.azure-dark-mode .azure-share-title,
    body.azure-dark-mode .azure-report-title {
        color: #e0e0e0;
    }

    body.azure-dark-mode .azure-site-description,
    body.azure-dark-mode .azure-section-desc,
    body.azure-dark-mode .azure-benefit-content h4,
    body.azure-dark-mode .azure-security-content h4,
    body.azure-dark-mode .azure-related-title,
    body.azure-dark-mode .azure-tool-name {
        color: #e0e0e0;
    }

    body.azure-dark-mode .azure-stat-item,
    body.azure-dark-mode .azure-detail-item,
    body.azure-dark-mode .azure-benefit-item,
    body.azure-dark-mode .azure-security-item,
    body.azure-dark-mode .azure-tool-link,
    body.azure-dark-mode .azure-related-item {
        background: rgba(0, 122, 204, 0.05);
        color: #bdc3c7;
    }

    body.azure-dark-mode .azure-stat-item:hover,
    body.azure-dark-mode .azure-detail-item:hover,
    body.azure-dark-mode .azure-benefit-item:hover,
    body.azure-dark-mode .azure-tool-link:hover,
    body.azure-dark-mode .azure-related-item:hover {
        background: #007acc;
        color: #fff;
    }

    body.azure-dark-mode .azure-share-url,
    body.azure-dark-mode .azure-report-textarea,
    body.azure-dark-mode .azure-report-email {
        background: #3d3d3d;
        border-color: rgba(0, 122, 204, 0.3);
        color: #e0e0e0;
    }

    body.azure-dark-mode .azure-share-btn,
    body.azure-dark-mode .azure-radio-item {
        background: rgba(0, 122, 204, 0.05);
    }
}


@media (prefers-contrast: high) {

    .azure-site-header-card,
    .azure-stats-section,
    .azure-details-section,
    .azure-benefits-section,
    .azure-security-section,
    .azure-sidebar-card {
        border: 2px solid #007acc;
    }

    .azure-action-btn,
    .azure-tool-link,
    .azure-related-item {
        border: 1px solid #007acc;
    }

    .azure-action-btn:focus,
    .azure-tool-link:focus,
    .azure-related-item:focus {
        outline: 3px solid #007acc;
        outline-offset: 2px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .azure-shape {
        animation: none;
    }

    .azure-site-header-card,
    .azure-stats-section,
    .azure-details-section,
    .azure-benefits-section,
    .azure-security-section,
    .azure-sidebar-card,
    .azure-action-btn,
    .azure-tool-link,
    .azure-related-item,
    .azure-share-btn,
    .azure-share-copy {
        transition: none;
    }

    .azure-action-btn:hover,
    .azure-tool-link:hover,
    .azure-related-item:hover,
    .azure-benefit-item:hover {
        transform: none;
    }

    .azure-bounce,
    .azure-star-animate,
    .azure-security-animate,
    .azure-badge-bounce {
        animation: none;
    }
}


@media print {

    .azure-site-bg,
    .azure-site-actions,
    .azure-site-sidebar,
    .azure-share-overlay,
    .azure-share-popup,
    .azure-report-overlay,
    .azure-report-popup,
    .azure-toast {
        display: none !important;
    }

    .azure-site-container {
        padding: 0;
    }

    .azure-site-wrapper {
        max-width: none;
        padding: 0;
    }

    .azure-site-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .azure-site-header-card,
    .azure-stats-section,
    .azure-details-section,
    .azure-benefits-section,
    .azure-security-section {
        box-shadow: none;
        border: 1px solid #ddd;
        border-radius: 0;
        margin-bottom: 20px;
        page-break-inside: avoid;
    }

    .azure-site-hero,
    .azure-section-header {
        background: #f8f9fa !important;
        border-bottom: 1px solid #ddd;
    }

    .azure-site-title,
    .azure-section-title {
        color: #000 !important;
    }

    .azure-site-description,
    .azure-section-desc {
        color: #666 !important;
    }

    .azure-stat-item,
    .azure-detail-item,
    .azure-benefit-item,
    .azure-security-item {
        background: #f8f9fa !important;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .azure-stat-value,
    .azure-detail-value,
    .azure-benefit-content h4,
    .azure-security-content h4 {
        color: #000 !important;
    }

    .azure-stat-label,
    .azure-detail-label,
    .azure-benefit-content p,
    .azure-security-content p {
        color: #666 !important;
    }
}


.azure-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.azure-skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #007acc;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.azure-skip-link:focus {
    top: 6px;
}


.azure-action-btn:focus,
.azure-tool-link:focus,
.azure-related-item:focus,
.azure-share-btn:focus,
.azure-share-copy:focus,
.azure-report-close:focus,
.azure-share-close:focus,
.azure-btn-cancel:focus,
.azure-btn-submit:focus {
    outline: 2px solid #007acc;
    outline-offset: 2px;
}


::selection {
    background: rgba(0, 122, 204, 0.2);
    color: #2c3e50;
}

::-moz-selection {
    background: rgba(0, 122, 204, 0.2);
    color: #2c3e50;
}


.azure-loading {
    position: relative;
    overflow: hidden;
}

.azure-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 204, 0.1), transparent);
    animation: azureLoading 1.5s infinite;
}

@keyframes azureLoading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}


.azure-error {
    text-align: center;
    padding: 40px 20px;
    color: #e74c3c;
}

.azure-error i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.azure-error h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #e74c3c;
}

.azure-error p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}


.azure-empty {
    text-align: center;
    padding: 40px 20px;
    color: #95a5a6;
}

.azure-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.5;
}

.azure-empty h3 {
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #95a5a6;
}

.azure-empty p {
    font-size: 14px;
    color: #bdc3c7;
    margin: 0;
}


.azure-tooltip {
    position: relative;
    display: inline-block;
}

.azure-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-bottom: 5px;
}

.azure-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #2c3e50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.azure-tooltip:hover::before,
.azure-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}


.azure-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.azure-badge-primary {
    background: rgba(0, 122, 204, 0.1);
    color: #007acc;
}

.azure-badge-success {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.azure-badge-warning {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.azure-badge-danger {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.azure-badge-info {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}


.azure-progress {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.azure-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #007acc, #0066cc);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.azure-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: azureProgressShine 2s infinite;
}

@keyframes azureProgressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


.azure-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 204, 0.2), transparent);
    margin: 20px 0;
}

.azure-divider-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(0, 122, 204, 0.2), transparent);
    margin: 0 20px;
}


.azure-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.azure-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(0, 122, 204, 0.1);
    color: #007acc;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.azure-tag:hover {
    background: #007acc;
    color: #fff;
    transform: translateY(-1px);
}

.azure-tag i {
    margin-right: 4px;
    font-size: 10px;
}


.azure-card-group {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.azure-card-group.azure-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.azure-card-group.azure-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.azure-card-group.azure-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

    .azure-card-group.azure-cols-2,
    .azure-card-group.azure-cols-3,
    .azure-card-group.azure-cols-4 {
        grid-template-columns: 1fr;
    }
}


.azure-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.azure-list-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 122, 204, 0.1);
    transition: all 0.3s ease;
}

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

.azure-list-item:hover {
    background: rgba(0, 122, 204, 0.02);
    padding-left: 10px;
}

.azure-list-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 122, 204, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007acc;
    margin-right: 12px;
    flex-shrink: 0;
}

.azure-list-content {
    flex: 1;
    min-width: 0;
}

.azure-list-title {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0 4px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.azure-list-desc {
    font-size: 12px;
    color: #7f8c8d;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.azure-list-meta {
    font-size: 11px;
    color: #95a5a6;
    margin-left: 12px;
    flex-shrink: 0;
}


.azure-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 122, 204, 0.1);
}

.azure-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.azure-table th,
.azure-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.azure-table th {
    background: #f8fbff;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.azure-table td {
    font-size: 13px;
    color: #2c3e50;
}

.azure-table tr:hover {
    background: rgba(0, 122, 204, 0.02);
}

.azure-table tr:last-child td {
    border-bottom: none;
}


.azure-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.azure-btn-group .azure-action-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
}

@media (max-width: 480px) {
    .azure-btn-group {
        flex-direction: column;
    }

    .azure-btn-group .azure-action-btn {
        width: 100%;
    }
}


.azure-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #fff;
}

.azure-input:focus {
    outline: none;
    border-color: #007acc;
    box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}

.azure-input::placeholder {
    color: #95a5a6;
}


.azure-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.azure-select:focus {
    outline: none;
    border-color: #007acc;
    box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}


.azure-checkbox,
.azure-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #2c3e50;
}

.azure-checkbox input[type="checkbox"],
.azure-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #007acc;
}


.azure-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.azure-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.azure-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.azure-switch-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.azure-switch input:checked+.azure-switch-slider {
    background: #007acc;
}

.azure-switch input:checked+.azure-switch-slider::before {
    transform: translateX(26px);
}


.azure-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e9ecef;
    outline: none;
    -webkit-appearance: none;
}

.azure-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007acc;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 122, 204, 0.3);
}

.azure-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007acc;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 122, 204, 0.3);
}


.azure-accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 122, 204, 0.1);
}

.azure-accordion-item {
    border-bottom: 1px solid rgba(0, 122, 204, 0.1);
}

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

.azure-accordion-header {
    padding: 15px 20px;
    background: #f8fbff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.azure-accordion-header:hover {
    background: #e9f4ff;
}

.azure-accordion-title {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
}

.azure-accordion-icon {
    color: #007acc;
    transition: transform 0.3s ease;
}

.azure-accordion-item.active .azure-accordion-icon {
    transform: rotate(180deg);
}

.azure-accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

.azure-accordion-item.active .azure-accordion-content {
    padding: 20px;
    max-height: 500px;
}


.azure-tabs {
    margin: 20px 0;
}

.azure-tab-nav {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 20px;
}

.azure-tab-item {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.azure-tab-item:hover,
.azure-tab-item.active {
    color: #007acc;
    border-bottom-color: #007acc;
}

.azure-tab-content {
    display: none;
}

.azure-tab-content.active {
    display: block;
    animation: azureFadeIn 0.3s ease;
}

@keyframes azureFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.azure-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.azure-modal.show {
    opacity: 1;
    visibility: visible;
}

.azure-modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.azure-modal.show .azure-modal-content {
    transform: scale(1);
}

.azure-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 122, 204, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.azure-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.azure-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 122, 204, 0.1);
    border-radius: 50%;
    color: #007acc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.azure-modal-close:hover {
    background: #007acc;
    color: #fff;
}

.azure-modal-body {
    padding: 25px;
}

.azure-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(0, 122, 204, 0.1);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}


.azure-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 122, 204, 0.15);
    padding: 15px 20px;
    max-width: 350px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
    border-left: 4px solid #007acc;
}

.azure-notification.show {
    transform: translateX(0);
}

.azure-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.azure-notification-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.azure-notification-close {
    background: none;
    border: none;
    color: #95a5a6;
    cursor: pointer;
    padding: 0;
    font-size: 16px;
}

.azure-notification-body {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.4;
}

.azure-notification.success {
    border-left-color: #27ae60;
}

.azure-notification.warning {
    border-left-color: #f39c12;
}

.azure-notification.error {
    border-left-color: #e74c3c;
}

.azure-notification.info {
    border-left-color: #3498db;
}