/*body {
    background-color: #f8f9fa;
    padding-top: 20px;
    padding-bottom: 60px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}*/
/*.container {
    max-width: 1400px;
}*/
.header {
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.card {
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    height: 100%;
    overflow: hidden;
    border: none;
}
.card-header {
    background: linear-gradient(to right, #6f42c1, #7952b3);
    color: white;
    border-radius: 12px 12px 0 0 !important;
    font-weight: bold;
    padding: 15px 20px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.code-container {
    height: 380px;
    overflow: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}
.btn-purple {
    background: linear-gradient(to right, #6f42c1, #7952b3);
    color: white;
    border: none;
    transition: all 0.3s;
}
.btn-purple:hover {
    background: linear-gradient(to right, #5a32a3, #614397);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: white;
}
.stats {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 15px;
}
.feature-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #6f42c1;
    background: linear-gradient(to right, #6f42c1, #7952b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.tool-btn {
    margin-bottom: 10px;
    transition: all 0.2s;
    border-radius: 8px;
    padding: 8px 16px;
}
.tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.feature-card {
    transition: all 0.3s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}
.feature-card .card-body {
    padding: 25px;
}
.btn-group-vertical {
    width: 100%;
}
.btn-group-vertical .btn {
    text-align: left;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
}
@media (max-width: 992px) {
    .code-container {
        height: 300px;
    }
}
.CodeMirror {
    height: 100%;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Fira Code', 'Courier New', monospace;
    border-radius: 0 0 8px 8px;
}
.CodeMirror-gutters {
    background-color: #f8f9fa;
    border-right: 1px solid #e9ecef;
}
