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

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);
}

.inbox-container { 
    width: 90%;
    max-width: 900px; 
    margin: 50px auto; 
    padding: 20px; 
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #e0e0e0;
}

.email-header { 
    background-color: #2a2a2a; 
    padding: 20px; 
    border-radius: 8px; 
    margin-bottom: 25px; 
    text-align: center; 
    border: 1px solid #444;
}

.email-header h2 {
    color: #fff;
    margin-top: 0;
    font-size: 1.5rem;
}

.email-address { 
    font-size: 1.5rem; 
    font-weight: bold; 
    user-select: all; 
    color: #00ffcc;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    word-break: break-all;
}

.timer { 
    font-size: 1.2rem; 
    margin-top: 15px; 
    color: #ccc;
}

.email-list { list-style: none; padding: 0; }

.email-item { 
    border: 1px solid #444; 
    border-radius: 8px; 
    margin-bottom: 10px; 
    background-color: #2c2c2c;
    overflow: hidden;
}

.email-item-header { 
    background-color: #333; 
    padding: 12px 15px; 
    cursor: pointer; 
    transition: background-color 0.2s;
}

.email-item-header:hover {
    background-color: #3e3e3e;
}

.email-item-body { 
    padding: 15px; 
    display: none; 
    white-space: pre-wrap; 
    background-color: #2c2c2c;
    border-top: 1px solid #444;
    line-height: 1.6;
}

.no-emails { text-align: center; color: #888; padding: 40px 20px; }

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #000000;
    background-color: #00ffcc;
    border: none;
    cursor: pointer;
    font-family: 'SF pro', monospace;
    margin: 5px;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.8;
}

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