/* forum/static/pgp_public.css */

.pgp-public-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.pgp-public-page h2 {
    text-align: center;
    margin-bottom: 20px;
}

.alert-error {
    color: #ff6666;
    margin-bottom: 10px;
    text-align: center;
}

.pgp-form-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.pgp-key-box {
    background-color: #333;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 400px;
    overflow-y: auto;
}

.btn-back-profile {
    display: inline-block;
    width: auto;
    padding: 8px 12px;
    background-color: #23825f;
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    font-family: inherit;
}

.btn-back-profile:hover {
    background-color: #1a6347;
}
