/* Caja general */
.pde-box {
    border: 1px solid #ddd;
    padding: 15px;
    max-width: 250px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    margin: 10px 0;
}

/* Encabezado con icono y título */
.pde-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
}

.pde-icon {
    width: 40px;
    height: 40px;
}

.pde-info {
    text-align: left;
}

.pde-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.pde-title a {
    color: #333;
    text-decoration: none;
}

.pde-title a:hover {
    color: #0073e6;
    text-decoration: underline;
}

.pde-format {
    font-size: 12px;
    color: #999;
}

/* Botones */
.pde-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 8px;
}

.pde-button {
    flex: 1;
    text-align: center;
    padding: 8px 10px;
    font-size: 12px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    color: #0073e6;
    text-decoration: none;
    transition: background 0.3s ease;
}

.pde-button:hover {
    background: #0073e6;
    color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
    .pde-box {
        max-width: 100%;
    }
}
