diff --git a/public/popup.css b/public/popup.css
index 57a2253..7b5248b 100644
--- a/public/popup.css
+++ b/public/popup.css
@@ -167,6 +167,17 @@ body {
color: #666;
}
+/* 다음 리뷰 정보 */
+.next-review-info {
+ margin-bottom: 12px;
+ padding: 8px 12px;
+ background-color: #eaf4fb;
+ border-radius: 6px;
+ font-size: 12px;
+ color: #2980b9;
+ text-align: center;
+}
+
/* 저장 결과 */
.result {
margin-top: 16px;
diff --git a/public/popup.html b/public/popup.html
index e5b1515..a7235f2 100644
--- a/public/popup.html
+++ b/public/popup.html
@@ -38,6 +38,10 @@
Recycle Study
+
+
+
+
diff --git a/src/api.js b/src/api.js
index ecd7784..bcba780 100644
--- a/src/api.js
+++ b/src/api.js
@@ -176,3 +176,16 @@ export async function updateNotificationTime(identifier, hour, minute) {
body: { notificationTime: [hour, minute] }
});
}
+
+/**
+ * 다음 리뷰 정보 조회
+ * @param {string} identifier - 디바이스 식별자
+ * @returns {Promise