/**
 * AI Settings tab styles for Agentorie Chat.
 *
 * @package    Agentorie_Chat
 * @subpackage Agentorie_Chat/admin/css
 * @since      1.1.6
 */

/* ==========================================================================
   Language Select
   ========================================================================== */

.agentorie-language-select {
	min-width: 320px;
	padding: 8px 12px;
	font-size: 14px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	background-color: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.agentorie-language-select:focus {
	border-color: #6366f1;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
	outline: none;
}

/* ==========================================================================
   Tone Grid
   ========================================================================== */

.agentorie-tone-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.agentorie-tone-card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
}

.agentorie-tone-card:hover {
	border-color: #a5b4fc;
	background: #fafaff;
}

.agentorie-tone-card.selected {
	border-color: #6366f1;
	background: #f5f3ff;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.agentorie-tone-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.tone-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tone-icon {
	font-size: 24px;
	line-height: 1;
}

.tone-label {
	font-size: 15px;
	font-weight: 600;
	color: #1e293b;
}

.tone-desc {
	font-size: 12px;
	color: #64748b;
	line-height: 1.4;
}

.tone-check {
	display: none;
	color: #6366f1;
	flex-shrink: 0;
}

.agentorie-tone-card.selected .tone-check {
	display: flex;
	align-items: center;
}

.tone-check .dashicons {
	font-size: 22px;
	width: 22px;
	height: 22px;
}

/* ==========================================================================
   Custom Tone
   ========================================================================== */

.agentorie-custom-tone-wrap {
	margin-top: 10px;
	padding-top: 16px;
	border-top: 1px solid #e2e8f0;
}

.agentorie-custom-tone-wrap .form-table {
	margin-top: 0;
}

.agentorie-custom-tone-wrap .form-table th {
	padding-top: 0;
}

#custom-tone-input {
	width: 100%;
	max-width: 500px;
}

#custom-tone-count {
	font-weight: 600;
	color: #1e293b;
}

/* ==========================================================================
   Multilingual Info Box
   ========================================================================== */

.agentorie-multilingual-info {
	margin-top: 10px;
}

.agentorie-multilingual-info .alert-box {
	margin-bottom: 0;
}

/* ==========================================================================
   Company Info - Form enhancements
   ========================================================================== */

.agentorie-card textarea {
	resize: vertical;
	min-height: 60px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media screen and (max-width: 782px) {
	.agentorie-language-select {
		min-width: 100%;
	}

	.agentorie-tone-grid {
		grid-template-columns: 1fr;
	}
}
