 
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-header {
    background: linear-gradient(135deg, #2a2a2a, #4a4a4a); /* Metallic gradient */
    border-bottom: none;
    position: relative;
}

.accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff6200; /* Orange accent */
}
[data-layout=horizontal] .page-content{
    margin-top: 15px !important;
}
.card-title {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: #ff6200;
    border-color: #ff6200;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
}

.btn-outline-dark {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: #ff6200;
    color: #fff;
    border-color: #ff6200;
}

.cover-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1.display-4 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}