/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 *
 * Updated with more specific rules to prevent theme/plugin conflicts.
 */

.gemini-pdf-pro-button-container {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

/* By specifying the container class first, we make this rule more specific.
  The !important declarations ensure these styles take priority.
*/
.gemini-pdf-pro-button-container .gemini-pdf-pro-button {
    display: inline-block !important;
    padding: 10px 18px !important;
    background-color: #4285F4 !important; /* Google Blue */
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold !important;
    border: none !important; /* Override theme borders */
    border-radius: 5px !important;
    transition: background-color 0.3s ease, transform 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
}

.gemini-pdf-pro-button-container .gemini-pdf-pro-button:hover {
    background-color: #3367D6 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

.gemini-pdf-pro-button-container .gemini-pdf-pro-button:active {
    transform: translateY(0) !important;
}
