:root {
	--go-bg-color: #f0f2f5;
	--go-glass-bg: rgba(255, 255, 255, 0.7);
	--go-glass-border: rgba(255, 255, 255, 0.5);
	--go-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
	--go-primary: #4e54c8;
	--go-secondary: #8f94fb;
	--go-text: #333;
	--go-text-light: #666;
	--go-radius: 12px;
	--go-card-bg: #fff;
}

.gemini-organizer-container {
	font-family: 'Inter', sans-serif;
	color: var(--go-text);
	background: var(--go-bg-color);
	padding: 20px;
	border-radius: var(--go-radius);
	max-width: 1200px;
	margin: 0 auto;
}

.go-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	background: var(--go-glass-bg);
	backdrop-filter: blur(4px);
	padding: 1rem;
	border-radius: var(--go-radius);
	box-shadow: var(--go-shadow);
	border: 1px solid var(--go-glass-border);
}

.go-header h1 {
	margin: 0;
	font-size: 1.5rem;
	color: var(--go-primary);
}

.go-controls {
	display: flex;
	gap: 10px;
}

.go-controls input, .go-controls select {
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	outline: none;
}

.go-btn-primary {
	background: linear-gradient(135deg, var(--go-primary), var(--go-secondary));
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	transition: transform 0.2s;
}

.go-btn-primary:active {
	transform: scale(0.98);
}

.go-board {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 20px;
}

.go-column {
	flex: 1;
	min-width: 300px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: var(--go-radius);
	padding: 1rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.go-column h3 {
	margin-top: 0;
	border-bottom: 2px solid var(--go-secondary);
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
}

.go-task-card {
	background: var(--go-card-bg);
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 15px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.go-task-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-color: var(--go-secondary);
}

.go-task-card h4 {
	margin: 0 0 10px 0;
	font-size: 1.1rem;
}

.go-task-meta {
	font-size: 0.85rem;
	color: var(--go-text-light);
	display: flex;
	justify-content: space-between;
}

/* Modal */
.go-modal {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
	backdrop-filter: blur(5px);
}

.go-modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 2rem;
	border-radius: var(--go-radius);
	width: 500px;
	max-width: 90%;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	position: relative;
	animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
	from { transform: translateY(-50px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.go-close-modal {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.go-close-modal:hover {
	color: #000;
}

.go-modal-body label {
	display: block;
	margin: 15px 0 5px;
	font-weight: bold;
	color: var(--go-text-light);
}

.go-modal-body select, .go-modal-body textarea {
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ddd;
}

.go-notes-list {
	max-height: 200px;
	overflow-y: auto;
	margin-bottom: 15px;
	border: 1px solid #eee;
	padding: 10px;
	border-radius: 6px;
	background: #f9f9f9;
}

.go-note-item {
	padding: 10px;
	border-bottom: 1px solid #eee;
	font-size: 0.9rem;
}

.go-note-item:last-child {
	border-bottom: none;
}

.go-note-date {
	color: #888;
	font-size: 0.8rem;
	display: block;
	margin-top: 5px;
}

.go-btn-secondary {
	background: #6c757d;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
	margin-top: 10px;
}

.go-btn-danger {
	background: #dc3545;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
}

.go-modal-footer {
	margin-top: 2rem;
	border-top: 1px solid #eee;
	padding-top: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
