/* Search Form */
.scv-search-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.scv-form-group {
    margin-bottom: 15px;
}

.scv-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.scv-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.scv-search-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s;
}

.scv-search-btn:hover {
    background: #45a049;
}

/* Error Message */
.scv-error {
    color: #d63638;
    padding: 15px;
    background: #ffebee;
    border-radius: 4px;
    margin-top: 20px;
    border-left: 4px solid #d63638;
}

/* Certificate */
.scv-certificate-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 40px;
    background: #fff;
    border: 15px solid #0C2340;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.scv-certificate-header {
    margin-bottom: 30px;
}

.scv-certificate-header .scv-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.scv-certificate-header h2 {
    color: #0C2340;
    font-size: 28px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #0C2340;
    display: inline-block;
}

.scv-certificate-body {
    margin: 30px 0;
}

.scv-certificate-body p {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
}

.scv-certificate-body h3 {
    color: #0C2340;
    font-size: 32px;
    margin: 20px 0;
    font-weight: bold;
}

.scv-certificate-body h4 {
    color: #0C2340;
    font-size: 24px;
    margin: 20px 0;
    font-weight: bold;
}

.scv-certificate-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    text-align: left;
}

.scv-certificate-details {
    flex: 1;
}

.scv-certificate-details p {
    margin: 5px 0;
    font-size: 16px;
}

.scv-signatures {
    flex: 1;
    text-align: center;
}

.scv-signature {
    display: inline-block;
    margin-top: 50px;
}

.scv-signature-line {
    width: 200px;
    height: 1px;
    background: #000;
    margin: 0 auto 10px;
}

.scv-certificate-actions {
    margin-top: 30px;
    text-align: center;
}

.scv-print-btn {
    background: #0C2340;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.scv-print-btn:hover {
    background: #1a3a6a;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .scv-search-form-container,
    .scv-certificate-container {
        width: 90%;
        padding: 15px;
    }
    
    .scv-certificate-container {
        padding: 20px;
        border-width: 10px;
    }
    
    .scv-certificate-body h3 {
        font-size: 24px;
    }
    
    .scv-certificate-body h4 {
        font-size: 20px;
    }
    
    .scv-certificate-footer {
        flex-direction: column;
    }
    
    .scv-signatures {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .scv-certificate-container {
        padding: 15px;
        border-width: 8px;
    }
    
    .scv-certificate-header h2 {
        font-size: 22px;
    }
    
    .scv-certificate-body p {
        font-size: 16px;
    }
}