/* Frontend Styles for GXS Email Signatures */

.gxs-signatures-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gxs-signatures-list h2 {
    color: #3F4727;
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.gxs-signatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gxs-signature-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gxs-signature-card:hover {
    box-shadow: 0 4px 12px rgba(63, 71, 39, 0.15);
    transform: translateY(-2px);
}

.gxs-signature-info h3 {
    margin: 0 0 5px 0;
    color: #3F4727;
    font-size: 18px;
    font-weight: bold;
}

.gxs-job-title {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.gxs-view-button {
    background-color: #3F4727;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.gxs-view-button:hover {
    background-color: #2d3319;
}

.gxs-instructions {
    background: #fff9e6;
    border-left: 4px solid #3F4727;
    padding: 25px;
    border-radius: 4px;
    margin-top: 40px;
}

.gxs-instructions h3 {
    color: #3F4727;
    margin-top: 0;
    margin-bottom: 15px;
}

.gxs-instructions ol {
    margin: 0;
    padding-left: 20px;
}

.gxs-instructions li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gxs-signatures-grid {
        grid-template-columns: 1fr;
    }
    
    .gxs-signature-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gxs-view-button {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}
