body {
    min-height: 100vh;
    display: flex; 
    flex-direction: column;
    font-family: 'Inter', sans-serif; 
    background: radial-gradient(circle at top, #1a1a1a, #0d0d0d);
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s;
}

h1 {
    color: #00ffcc;
    text-align: center;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    background: inherit;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    color: #ff00cc;
    text-shadow: 0 0 8px #ff00cc;
}

.profile-container {
    width: 80%;
    max-width: 800px;
    margin: auto; 
    padding: 30px;
    background: rgba(30, 30, 30, 0.75);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #ffffff;
}

.profile-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-header h1 {
    color: #00ffcc;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 1.2em;
    color: #ccc;
}

.profile-info {
    margin-bottom: 30px;
}

.profile-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.profile-info strong {
    color: #00ffcc;
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.profile-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #1a1a1a;
    background-color: #00ffcc;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.profile-button:hover {
    background-color: #00e6b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.status-indicator {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: 24px; 
    height: 24px; 
    border-radius: 50%;
    color: white;
    font-size: 16px; 
    font-weight: bold;
    margin: 0 5px;
}
  
.check-true {
    background-color:rgb(0, 205, 164); 
}
  
.cross-false {
    background-color:rgb(173, 0, 14);
}

@media (max-width: 768px) {
    .profile-container {
        width: 95%;
        padding: 20px;
        margin-top: 20px;
    }
}