/* Text Diff Checker Styles */
.diff-container {
    max-width: 100%;
    margin: 0 auto;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}


/* Interface Section */
.diff-interface {
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.diff-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.diff-column {
    flex: 1;
    min-width: 300px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.diff-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f5f7fa;
    border-bottom: 1px solid #e0e0e0;
}

.diff-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}
.btn-custom{
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 22px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-custom:hover {
    background-color: rgb(46, 179, 6);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.diff-actions {
    display: flex;
    gap: 5px;
}

.btn-action {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    color: #64748b;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}



.diff-textarea {
    width: 100%;
    height: 170px;
    padding: 15px;
    /* font-size: 14px; */
    line-height: 1.5;
    border: none;
    resize: vertical;
    outline: none;
}

.diff-actions-main {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}


.btn-primary:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-p{
    padding: 24px 31px;
    border: 0px;
    outline: none;
    cursor: pointer;
  }