/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.7
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Certificate Verification Page Styles */
.certificate-verification {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.certificate-verification h1 {
    color: #2c5282;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.certificate-details {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.certificate-details p {
    margin: 15px 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.certificate-details strong {
    color: #2d3748;
    display: inline-block;
    min-width: 120px;
}

.certificate-image {
    margin-top: 30px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.certificate-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Error message styling */
.certificate-verification .error-message {
    color: #e53e3e;
    font-size: 1.2em;
    margin: 20px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .certificate-verification {
        padding: 15px;
    }

    .certificate-verification h1 {
        font-size: 2em;
    }

    .certificate-details {
        padding: 20px;
    }

    .certificate-details p {
        font-size: 1em;
    }
}

/* Certificate Generation Progress Bar */
.progress-bar {
    width: 100%;
    height: 30px;
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #ddd;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.progress-text {
    text-align: center;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

