﻿/* Keep only necessary custom styles, remove Bootstrap dependencies */

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #0ea5e9;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}

/* Monaco editor adjustments */
.monaco-editor-container {
    height: 70vh;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Ensure the entire editor is visible */
#diff-editor {
    width: 100%;
    height: 100%;
}

/* Card animation for tool cards */
.tool-card {
    transition: all 0.2s ease-in-out;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Footer text style */
.footer-text {
    padding-top: 5px;
    font-size: 10px;
    color: #6b7280;
}