/* Estilos para el plugin ToolCookies */

.toolcookies-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

#extension-status {
    padding: 10px;
    margin-top: 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.extension-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.prompt-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prompt-content h3 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
}

.prompt-content p {
    margin: 15px 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.install-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.install-button:hover {
    background-color: #45a049;
}

/* Estilos para la página de éxito */
.extension-success {
    text-align: center;
    padding: 40px 20px;
}

.extension-success h2 {
    color: #4CAF50;
    font-size: 28px;
    margin-bottom: 20px;
}

.extension-success p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}