﻿.page-title {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.code-title {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 15px;
    font-weight: 600;
}

.code-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .code-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

.card-header {
    background-color: #2d2d2d;
    border-bottom: 1px solid #444;
}

.copy-btn {
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .copy-btn:hover {
        background-color: #3498db;
        color: #fff !important;
    }

    .copy-btn.copied {
        background-color: #2ecc71;
        color: #fff !important;
    }

.code-container {
    padding: 0;
}

pre {
    margin: 0;
    padding: 15px;
    background-color: #1e1e1e;
    border-radius: 0 0 8px 8px;
}

code {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 14px;
    color: #f8f8f2;
}
