/* Dark Theme and Layout Styles */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
}

.content-box {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.profile-section {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #444;
    margin-right: 1.5rem;
}

.profile-info h2 {
    margin: 0;
}

.profile-links a {
    display: inline-block;
    margin-right: 1rem;
    text-decoration: none;
    color: #0d6efd; /* Bootstrap Primary Color */
}

.profile-links a:hover {
    text-decoration: underline;
}

.switch-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.placeholder-img {
    width: 50px;
    height: 50px;
    background: #444;
    border-radius: 50%;
}

.colors_pics {
    width: 100%;
    height: 100%;
    transform: scale(1.42);
    object-fit: cover;
}

.btn-custom {
    background-color: #333;
    color: #e0e0e0;
    border: 1px solid #555;
}

.btn-custom:hover {
    background-color: #555;
    color: #fff;
}

a {
    text-decoration: none;
    animation-name: a-out;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

a:hover {
    animation-name: a-in;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

@keyframes a-in {
    0% {
        color: DeepSkyBlue;
    }
    100% {
        color: Fuchsia;
    }
}

@keyframes a-out {
    0% {
        color: Fuchsia;
    }
    100% {
        color: DeepSkyBlue;
    }

}
