﻿body {
    background-color: #121212;
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
}

.container {
    max-width: 960px;
}

.card {
    background-color: #1f1f1f;
    border: none;
    border-radius: 12px;
    transition: box-shadow 0.3s ease-in-out;
}

    .card:hover {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    }

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.card-text {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
}

.text-muted {
    color: #999 !important;
}

.btn-outline-light {
    border-color: #555;
    color: #ffffff;
    transition: 0.2s ease-in-out;
}

    .btn-outline-light:hover {
        background-color: #ffffff;
        color: #000000;
    }

h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    color: #ffffff;
}

.rounded-circle {
    border: 2px solid #444;
}

.shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
}

.text-secondary {
    color: #bbb !important;
}
