#teleport-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2000; /* High enough to cover everything */
    display: flex; /* Centering */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #white;
    font-family: sans-serif;
}

.teleport-content {
    text-align: center;
    width: 100%;
    max-width: 500px;
}

#teleport-message {
    color: #eee;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#teleport-detail {
    color: #aaa;
    margin-top: 10px;
    font-size: 14px;
    min-height: 20px;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: #00b4ff; /* Wolfstorm-like blue */
    transition: width 0.3s ease;
}

#teleport-cancel-btn {
    margin-top: 20px;
    padding: 8px 16px;
    background: #444;
    border: 1px solid #666;
    color: #ccc;
    cursor: pointer;
    border-radius: 4px;
}

#teleport-cancel-btn:hover {
    background: #555;
    color: white;
}
