mautourco-components 0.2.23 → 0.2.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/dist/components/atoms/Icon/icons/LineIcon.d.ts +8 -0
  2. package/dist/components/atoms/Icon/icons/LineIcon.js +21 -0
  3. package/dist/components/atoms/Icon/icons/registry.d.ts +1 -0
  4. package/dist/components/atoms/Icon/icons/registry.js +2 -0
  5. package/dist/components/molecules/AccomodationDocket/AccomodationDocket.d.ts +7 -0
  6. package/dist/components/molecules/AccomodationDocket/AccomodationDocket.js +69 -0
  7. package/dist/components/molecules/AccomodationDocket/index.d.ts +2 -0
  8. package/dist/components/molecules/AccomodationDocket/index.js +1 -0
  9. package/dist/components/molecules/BookingResume/ResumeAccom/ResumeAccom.js +1 -1
  10. package/dist/components/molecules/BookingResume/ResumeExcursion/ResumeExcursion.js +1 -1
  11. package/dist/components/molecules/BookingResume/ResumeTransfer.js +1 -1
  12. package/dist/components/molecules/DateDisplay/DateDisplay.css +2100 -0
  13. package/dist/components/molecules/DateDisplay/DateDisplay.d.ts +13 -6
  14. package/dist/components/molecules/DateDisplay/DateDisplay.js +22 -8
  15. package/dist/components/molecules/DocketPrices/DocketPrices.d.ts +19 -0
  16. package/dist/components/molecules/DocketPrices/DocketPrices.js +31 -0
  17. package/dist/components/molecules/DocketPrices/index.d.ts +3 -0
  18. package/dist/components/molecules/DocketPrices/index.js +2 -0
  19. package/dist/components/molecules/ExcursionDocket/ExcursionDocket.d.ts +8 -0
  20. package/dist/components/molecules/ExcursionDocket/ExcursionDocket.js +30 -0
  21. package/dist/components/molecules/ExcursionDocket/index.d.ts +2 -0
  22. package/dist/components/molecules/ExcursionDocket/index.js +1 -0
  23. package/dist/components/molecules/LocationDropdown/LocationDropdown.js +8 -11
  24. package/dist/components/molecules/OtherServiceDocket/OtherServiceDocket.d.ts +8 -0
  25. package/dist/components/molecules/OtherServiceDocket/OtherServiceDocket.js +29 -0
  26. package/dist/components/molecules/OtherServiceDocket/index.d.ts +2 -0
  27. package/dist/components/molecules/OtherServiceDocket/index.js +1 -0
  28. package/dist/components/molecules/PriceDisplay/PriceDisplay.css +2101 -0
  29. package/dist/components/molecules/PriceDisplay/PriceDisplay.d.ts +26 -0
  30. package/dist/components/molecules/PriceDisplay/PriceDisplay.js +132 -0
  31. package/dist/components/molecules/PriceDisplay/index.d.ts +3 -0
  32. package/dist/components/molecules/PriceDisplay/index.js +2 -0
  33. package/dist/components/molecules/TransferDocket/TransferDocket.d.ts +8 -0
  34. package/dist/components/molecules/TransferDocket/TransferDocket.js +59 -0
  35. package/dist/components/molecules/TransferDocket/index.d.ts +3 -0
  36. package/dist/components/molecules/TransferDocket/index.js +2 -0
  37. package/dist/components/organisms/Docket/Docket.d.ts +126 -0
  38. package/dist/components/organisms/Docket/Docket.js +125 -0
  39. package/dist/index.d.ts +6 -0
  40. package/dist/index.js +3 -0
  41. package/dist/styles/components/molecule/accomodation-docket.css +2222 -0
  42. package/dist/styles/components/molecule/docket-prices.css +2095 -0
  43. package/dist/styles/components/molecule/excursion-docket.css +2135 -0
  44. package/dist/styles/components/molecule/other-service-docket.css +2114 -0
  45. package/dist/styles/components/molecule/transfer-docket.css +2150 -0
  46. package/dist/styles/components/organism/docket.css +2448 -0
  47. package/dist/types/docket/docket.types.d.ts +11 -0
  48. package/dist/types/docket/docket.types.js +1 -0
  49. package/dist/types/docket/services.types.d.ts +125 -0
  50. package/dist/types/docket/services.types.js +1 -0
  51. package/package.json +1 -1
  52. package/src/components/atoms/Icon/icons/LineIcon.tsx +31 -0
  53. package/src/components/atoms/Icon/icons/registry.tsx +2 -0
  54. package/src/components/molecules/AccomodationDocket/AccomodationDocket.tsx +224 -0
  55. package/src/components/molecules/AccomodationDocket/index.ts +3 -0
  56. package/src/components/molecules/BookingResume/ResumeAccom/ResumeAccom.tsx +1 -1
  57. package/src/components/molecules/BookingResume/ResumeExcursion/ResumeExcursion.tsx +1 -1
  58. package/src/components/molecules/BookingResume/ResumeTransfer.tsx +1 -1
  59. package/src/components/molecules/DateDisplay/DateDisplay.css +21 -0
  60. package/src/components/molecules/DateDisplay/DateDisplay.tsx +52 -24
  61. package/src/components/molecules/DocketPrices/DocketPrices.tsx +56 -0
  62. package/src/components/molecules/DocketPrices/index.ts +4 -0
  63. package/src/components/molecules/ExcursionDocket/ExcursionDocket.tsx +171 -0
  64. package/src/components/molecules/ExcursionDocket/index.ts +2 -0
  65. package/src/components/molecules/LocationDropdown/LocationDropdown.tsx +41 -38
  66. package/src/components/molecules/OtherServiceDocket/OtherServiceDocket.tsx +58 -0
  67. package/src/components/molecules/OtherServiceDocket/index.ts +2 -0
  68. package/src/components/molecules/PriceDisplay/PriceDisplay.css +24 -0
  69. package/src/components/molecules/PriceDisplay/PriceDisplay.tsx +179 -0
  70. package/src/components/molecules/PriceDisplay/index.ts +4 -0
  71. package/src/components/molecules/TransferDocket/TransferDocket.tsx +156 -0
  72. package/src/components/molecules/TransferDocket/index.ts +4 -0
  73. package/src/components/organisms/CarBookingCard/index.ts +1 -0
  74. package/src/components/organisms/Docket/Docket.tsx +456 -0
  75. package/src/components/organisms/SearchBarTransfer/index.ts +2 -0
  76. package/src/styles/components/molecule/accomodation-docket.css +117 -0
  77. package/src/styles/components/molecule/docket-prices.css +13 -0
  78. package/src/styles/components/molecule/excursion-docket.css +47 -0
  79. package/src/styles/components/molecule/other-service-docket.css +30 -0
  80. package/src/styles/components/molecule/transfer-docket.css +61 -0
  81. package/src/styles/components/organism/docket.css +360 -0
@@ -0,0 +1,117 @@
1
+ .accomodation-docket {
2
+ @apply flex flex-col;
3
+ gap: 12px;
4
+ }
5
+
6
+ .accomodation-docket__header {
7
+ @apply flex items-center justify-between;
8
+ }
9
+
10
+ .accomodation-docket__title-section {
11
+ @apply flex items-center gap-x-2 text-[var(--color-atoll-green-800)];
12
+ position: relative;
13
+ }
14
+
15
+ .accomodation-docket__title-bar {
16
+ height: 20px;
17
+ width: 3px;
18
+ background-color: var(--color-elevation-brand-subtle, #fe8839);
19
+ flex-shrink: 0;
20
+ }
21
+
22
+ .accomodation-docket__hotel-name {
23
+ @apply pl-3;
24
+ }
25
+
26
+ .accomodation-docket__rooms {
27
+ @apply flex flex-col;
28
+ gap: 12px;
29
+ }
30
+
31
+ .accomodation-docket__room {
32
+ @apply flex flex-col;
33
+ gap: 12px;
34
+ padding-left: 12px;
35
+ }
36
+
37
+ .accomodation-docket__room-header {
38
+ @apply flex items-center;
39
+ }
40
+
41
+ .accomodation-docket__room-empty {
42
+ @apply flex items-center;
43
+ }
44
+
45
+ .accomodation-docket__room-details {
46
+ @apply flex flex-col;
47
+ gap: 4px;
48
+ }
49
+
50
+ .accomodation-docket__date-section {
51
+ @apply flex flex-col;
52
+ gap: 4px;
53
+ }
54
+
55
+ .accomodation-docket__date-range {
56
+ @apply flex items-center gap-x-2;
57
+ }
58
+
59
+ .accomodation-docket__date-item {
60
+ @apply flex items-center gap-x-2;
61
+ }
62
+
63
+ .accomodation-docket__client-info {
64
+ @apply flex flex-col;
65
+ gap: 4px;
66
+ }
67
+
68
+ .accomodation-docket__client-type {
69
+ @apply flex items-center gap-x-0.5;
70
+ }
71
+
72
+ .accomodation-docket__guests {
73
+ @apply flex flex-col;
74
+ gap: 4px;
75
+ }
76
+
77
+ .accomodation-docket__children-wrapper {
78
+ @apply flex items-center gap-x-2;
79
+ color: var(--color-text-subtle, #303642);
80
+ }
81
+
82
+ .accomodation-docket__children {
83
+ @apply flex items-center gap-x-2;
84
+ }
85
+
86
+ .accomodation-docket__child-info {
87
+ @apply flex items-center;
88
+ }
89
+
90
+ .accomodation-docket__child-count {
91
+ color: var(--color-text-subtle, #303642);
92
+ }
93
+
94
+ .accomodation-docket__child-age {
95
+ color: var(--color-tuna-500);
96
+ }
97
+
98
+ .accomodation-docket__divider-vertical {
99
+ width: 0;
100
+ height: 14px;
101
+ border-left: 1px solid rgba(163, 163, 163, 1);
102
+ margin: 0 8px;
103
+ }
104
+
105
+ .accomodation-docket__room-info {
106
+ @apply flex flex-col;
107
+ gap: 4px;
108
+ }
109
+
110
+ .accomodation-docket__meal-plan {
111
+ @apply flex items-center gap-x-2;
112
+ }
113
+
114
+ .accomodation-docket__meal-plan-label {
115
+ @apply flex items-center gap-x-2;
116
+ }
117
+
@@ -0,0 +1,13 @@
1
+ .docket-prices {
2
+ @apply flex items-center justify-between;
3
+ padding: 0 var(--spacing-padding-px-2, 8px);
4
+ }
5
+
6
+ .docket-prices__label {
7
+ @apply shrink-0;
8
+ }
9
+
10
+ .docket-prices__price-list {
11
+ @apply flex flex-col items-end justify-center shrink-0;
12
+ gap: var(--spacing-gap-gap-1, 4px);
13
+ }
@@ -0,0 +1,47 @@
1
+ .excursion-docket {
2
+ @apply flex flex-col;
3
+ gap: 16px;
4
+ }
5
+
6
+ .excursion-docket__header {
7
+ @apply flex items-center justify-between;
8
+ }
9
+
10
+ .excursion-docket__title-section {
11
+ @apply flex items-center gap-x-2 text-[var(--color-atoll-green-800)];
12
+ position: relative;
13
+ }
14
+
15
+ .excursion-docket__title-bar {
16
+ height: 20px;
17
+ width: 3px;
18
+ background-color: var(--color-elevation-brand-subtle, #fe8839);
19
+ flex-shrink: 0;
20
+ }
21
+
22
+ .excursion-docket__excursion-name {
23
+ @apply pl-5;
24
+ }
25
+
26
+ .excursion-docket__details {
27
+ @apply flex flex-col;
28
+ gap: 12px;
29
+ padding-left: 12px;
30
+ }
31
+
32
+ .excursion-docket__pickup {
33
+ @apply flex items-center gap-x-0.5;
34
+ }
35
+
36
+ .excursion-docket__details-list {
37
+ @apply flex flex-col;
38
+ gap: 4px;
39
+ }
40
+
41
+ .excursion-docket__detail-item {
42
+ @apply flex items-center gap-x-2;
43
+ }
44
+
45
+ .excursion-docket__detail-label {
46
+ min-width: 100px;
47
+ }
@@ -0,0 +1,30 @@
1
+ .other-service-docket {
2
+ @apply flex flex-col;
3
+ gap: 16px;
4
+ }
5
+
6
+ .other-service-docket__header {
7
+ @apply flex items-center justify-between;
8
+ }
9
+
10
+ .other-service-docket__title-section {
11
+ @apply flex items-center gap-x-2 text-[var(--color-atoll-green-800)];
12
+ position: relative;
13
+ }
14
+
15
+ .other-service-docket__title-bar {
16
+ height: 20px;
17
+ width: 3px;
18
+ background-color: var(--color-elevation-brand-subtle, #fe8839);
19
+ flex-shrink: 0;
20
+ }
21
+
22
+ .other-service-docket__details {
23
+ @apply flex flex-col;
24
+ gap: 12px;
25
+ padding-left: 12px;
26
+ }
27
+
28
+ .other-service-docket__service-info {
29
+ @apply flex items-center;
30
+ }
@@ -0,0 +1,61 @@
1
+ .transfer-docket {
2
+ @apply flex flex-col;
3
+ gap: 12px;
4
+ }
5
+
6
+ .transfer-docket__header {
7
+ @apply flex items-center justify-between;
8
+ }
9
+
10
+ .transfer-docket__title-section {
11
+ @apply flex items-center gap-x-2 text-[var(--color-atoll-green-800)];
12
+ position: relative;
13
+ }
14
+
15
+ .transfer-docket__title-bar {
16
+ height: 20px;
17
+ width: 3px;
18
+ background-color: var(--color-elevation-brand-subtle, #fe8839);
19
+ flex-shrink: 0;
20
+ }
21
+
22
+ .transfer-docket__details {
23
+ @apply flex flex-col;
24
+ gap: 12px;
25
+ padding-left: 12px;
26
+ }
27
+
28
+ .transfer-docket__transfer-point {
29
+ @apply flex flex-col;
30
+ gap: 8px;
31
+ }
32
+
33
+ .transfer-docket__guests {
34
+ @apply flex flex-col;
35
+ gap: 4px;
36
+ }
37
+
38
+ .transfer-docket__children-wrapper {
39
+ @apply flex items-center gap-x-2;
40
+ color: var(--color-text-subtle, #303642);
41
+ }
42
+
43
+ .transfer-docket__children {
44
+ @apply flex items-center gap-x-2;
45
+ }
46
+
47
+ .transfer-docket__child-info {
48
+ @apply flex items-center;
49
+ }
50
+
51
+ .transfer-docket__child-age {
52
+ color: var(--color-tuna-500);
53
+ }
54
+
55
+ .transfer-docket__divider-vertical {
56
+ width: 0;
57
+ height: 14px;
58
+ border-left: 1px solid rgba(163, 163, 163, 1);
59
+ margin: 0 8px;
60
+ }
61
+
@@ -0,0 +1,360 @@
1
+ .docket {
2
+ @apply flex flex-col gap-6 p-6;
3
+ width: 384px;
4
+ min-height: 724px;
5
+ background: var(--color-elevation-level-1, #ffffff);
6
+ border: var(--border-border, 1px) solid var(--color-border-subtle, #e5e5e5);
7
+ border-radius: var(--border-radius-lg, 8px);
8
+ box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
9
+ }
10
+
11
+ .docket__header {
12
+ display: flex;
13
+ align-items: center;
14
+ justify-content: space-between;
15
+ width: 100%;
16
+ }
17
+
18
+ .docket__header-title {
19
+ display: flex;
20
+ align-items: center;
21
+ gap: var(--spacing-gap-md, 8px);
22
+ }
23
+
24
+ .docket__header-title-text {
25
+ font-family: var(--font-font-family-heading, 'Satoshi', sans-serif);
26
+ font-weight: var(--font-weight-bold, 700);
27
+ font-size: var(--font-size-text-xl, 20px);
28
+ line-height: var(--font-leading-leading-lg, 28px);
29
+ color: var(--color-text-default, #262626);
30
+ margin: 0;
31
+ white-space: nowrap;
32
+ }
33
+
34
+ .docket__header-more-options {
35
+ background: var(--tag-action-color-background-default, #ffffff) !important;
36
+ box-shadow:
37
+ 0 0 4px 0 rgba(48, 54, 66, 0.11),
38
+ 0 2px 2px 0 rgba(48, 54, 66, 0.1);
39
+ border-radius: var(--tag-action-border-radius-full, 8px);
40
+ padding: var(--tag-action-spacing-sm-padding-y, 6px)
41
+ var(--tag-action-spacing-sm-padding-x, 14px);
42
+ font-family: var(--font-font-family-body, 'Satoshi', sans-serif);
43
+ font-weight: var(--font-weight-medium, 500);
44
+ font-size: var(--font-size-text-sm, 14px);
45
+ line-height: var(--font-leading-leading-sm, 20px);
46
+ color: var(--tag-action-color-foreground-default, #262626) !important;
47
+ cursor: pointer;
48
+ border: none !important;
49
+ gap: var(--tag-action-spacing-sm-gap, 4px);
50
+ min-height: 32px;
51
+ transition: background-color 0.2s ease;
52
+ }
53
+
54
+ .docket__header-more-options .chip__label {
55
+ color: var(--tag-action-color-foreground-default, #262626) !important;
56
+ }
57
+
58
+ .docket__header-more-options:hover {
59
+ background: var(--tag-action-color-background-hover, #d9d9d9) !important;
60
+ color: var(--tag-action-color-foreground-hover, #262626) !important;
61
+ }
62
+
63
+ .docket__header-more-options:hover .chip__label {
64
+ color: var(--tag-action-color-foreground-hover, #262626) !important;
65
+ }
66
+
67
+ .docket__header-more-options:active {
68
+ background: var(--tag-action-color-background-active, #ffffff) !important;
69
+ color: var(--tag-action-color-foreground-active, #262626) !important;
70
+ }
71
+
72
+ .docket__header-more-options:active .chip__label {
73
+ color: var(--tag-action-color-foreground-active, #262626) !important;
74
+ }
75
+
76
+ .docket__header-more-options:focus {
77
+ background: var(--tag-action-color-background-focus, #ffffff) !important;
78
+ color: var(--tag-action-color-foreground-focus, #262626) !important;
79
+ outline: 1px solid var(--accordion-color-filled-icon-focused, black);
80
+ outline-offset: 0;
81
+ }
82
+
83
+ .docket__header-more-options:focus .chip__label {
84
+ color: var(--tag-action-color-foreground-focus, #262626) !important;
85
+ }
86
+
87
+ .docket__content {
88
+ flex: 1;
89
+ width: 100%;
90
+ max-height: 500px;
91
+ overflow-y: auto;
92
+ overflow-x: hidden;
93
+ scrollbar-width: thin;
94
+ scrollbar-color: var(--scroll-bar-color-foreground, #9ca3af)
95
+ var(--scroll-bar-color-background, #f3f4f6);
96
+ }
97
+
98
+ .docket__content::-webkit-scrollbar {
99
+ width: 6px;
100
+ }
101
+
102
+ .docket__content::-webkit-scrollbar-track {
103
+ background: var(--scroll-bar-color-background, #f3f4f6);
104
+ border-radius: 4px;
105
+ padding: 4px;
106
+ }
107
+
108
+ .docket__content::-webkit-scrollbar-thumb {
109
+ background: var(--scroll-bar-color-foreground, #9ca3af);
110
+ border-radius: 4px;
111
+ min-height: 20px;
112
+ }
113
+
114
+ .docket__content::-webkit-scrollbar-thumb:hover {
115
+ background: var(--scroll-bar-color-foreground-hover, #6b7280);
116
+ }
117
+
118
+ .docket__services {
119
+ display: flex;
120
+ flex-direction: column;
121
+ gap: var(--spacing-gap-lg, 24px);
122
+ width: 100%;
123
+ }
124
+
125
+ .docket__prices-section {
126
+ @apply w-full bg-[var(--color-gray-100)] flex flex-col gap-2;
127
+ }
128
+
129
+ /* Empty state */
130
+ .docket__empty-state {
131
+ display: flex;
132
+ flex-direction: column;
133
+ align-items: center;
134
+ gap: var(--spacing-gap-md, 16px);
135
+ width: 100%;
136
+ padding: var(--spacing-padding-md, 16px);
137
+ }
138
+
139
+ .docket__empty-state-content {
140
+ display: flex;
141
+ flex-direction: column;
142
+ align-items: center;
143
+ gap: var(--spacing-gap-md, 16px);
144
+ width: 100%;
145
+ }
146
+
147
+ .docket__empty-state-illustration {
148
+ width: 100px;
149
+ height: 100px;
150
+ position: relative;
151
+ overflow: hidden;
152
+ flex-shrink: 0;
153
+ }
154
+
155
+ .docket__empty-state-image {
156
+ position: absolute;
157
+ top: 50%;
158
+ left: 50%;
159
+ transform: translate(-50%, -50%);
160
+ width: 80px;
161
+ height: 72px;
162
+ object-fit: contain;
163
+ }
164
+
165
+ .docket__empty-state-text {
166
+ font-family: var(--font-font-family-body, 'Satoshi', sans-serif);
167
+ font-size: var(--font-size-text-sm, 14px);
168
+ line-height: var(--font-leading-leading-sm, 20px);
169
+ color: var(--color-text-default, #262626);
170
+ text-align: center;
171
+ margin: 0;
172
+ max-width: 100%;
173
+ }
174
+
175
+ .docket__empty-state-text-bold {
176
+ font-weight: var(--font-weight-bold, 700);
177
+ }
178
+
179
+ .docket__empty-state-text-regular {
180
+ font-weight: var(--font-weight-normal, 400);
181
+ }
182
+
183
+ .docket__footer {
184
+ display: flex;
185
+ flex-direction: column;
186
+ gap: var(--spacing-gap-md, 16px);
187
+ width: 100%;
188
+ }
189
+
190
+ .docket__footer-button {
191
+ flex: 1;
192
+ }
193
+
194
+ .docket__footer-button--full {
195
+ width: 100%;
196
+ }
197
+
198
+ .docket__footer-button--primary {
199
+ min-width: 162px;
200
+ }
201
+
202
+ .docket__footer-actions {
203
+ display: flex;
204
+ gap: var(--spacing-gap-md, 8px);
205
+ align-items: flex-start;
206
+ justify-content: flex-end;
207
+ width: 100%;
208
+ }
209
+
210
+ .docket__footer-actions .docket__footer-button {
211
+ flex: 1;
212
+ }
213
+
214
+ .docket__footer-actions .docket__footer-button--primary {
215
+ flex: 0 0 auto;
216
+ }
217
+
218
+ /* Collapsed header for mobile/tablet */
219
+ .docket__collapsed-header {
220
+ display: none;
221
+ align-items: center;
222
+ justify-content: space-between;
223
+ width: 256px;
224
+ height: 76px;
225
+ padding: var(--spacing-padding-md, 16px);
226
+ background: var(--color-elevation-level-1, #ffffff);
227
+ border: var(--border-border, 1px) solid var(--color-border-subtle, #e5e5e5);
228
+ border-radius: var(--border-radius-2xl, 16px);
229
+ box-shadow: var(--shadow-sm, 0 1px 2px 0 rgba(0, 0, 0, 0.05));
230
+ cursor: pointer;
231
+ transition: background-color 0.2s ease;
232
+ gap: var(--spacing-gap-md, 16px);
233
+ }
234
+
235
+ .docket__collapsed-header:hover {
236
+ background: var(--color-gray-50, #f9fafb);
237
+ }
238
+
239
+ .docket__collapsed-header-title {
240
+ display: flex;
241
+ align-items: center;
242
+ gap: var(--spacing-gap-md, 8px);
243
+ width: 208px;
244
+ height: 28px;
245
+ }
246
+
247
+ .docket__collapsed-header-title-text {
248
+ font-family: var(--font-font-family-heading, 'Satoshi', sans-serif);
249
+ font-weight: var(--font-weight-bold, 700);
250
+ font-size: var(--font-size-text-xl, 20px);
251
+ line-height: var(--font-leading-leading-lg, 28px);
252
+ color: var(--color-text-default, #262626);
253
+ margin: 0;
254
+ white-space: nowrap;
255
+ }
256
+
257
+ /* Mobile wrapper to control spacing */
258
+ .docket__mobile-wrapper {
259
+ display: flex;
260
+ flex-direction: column;
261
+ gap: 0;
262
+ }
263
+
264
+ /* Close header for mobile/tablet */
265
+ .docket__close-header {
266
+ display: none;
267
+ width: 141px;
268
+ height: 76px;
269
+ padding: var(--spacing-padding-lg, 24px);
270
+ background: var(--card-color-background-default, #fafafa);
271
+ border: var(--card-border-width-default, 1px) solid
272
+ var(--card-color-border-default, #a3a3a3);
273
+ border-radius: var(--border-radius-xl, 12px);
274
+ margin: 0;
275
+ }
276
+
277
+ .docket__close-header-content {
278
+ display: flex;
279
+ align-items: center;
280
+ justify-content: space-between;
281
+ gap: var(--spacing-gap-md, 16px);
282
+ }
283
+
284
+ .docket__close-header-text {
285
+ font-family: var(--font-font-family-heading, 'Satoshi', sans-serif);
286
+ font-weight: var(--font-weight-bold, 700);
287
+ font-size: var(--font-size-text-xl, 20px);
288
+ line-height: var(--font-leading-leading-lg, 28px);
289
+ color: var(--color-text-default, #262626);
290
+ margin: 0;
291
+ }
292
+
293
+ .docket__close-button {
294
+ display: flex;
295
+ align-items: center;
296
+ justify-content: center;
297
+ background: none;
298
+ border: none;
299
+ cursor: pointer;
300
+ padding: 0;
301
+ color: var(--color-text-default, #262626);
302
+ transition: opacity 0.2s ease;
303
+ }
304
+
305
+ .docket__close-button:hover {
306
+ opacity: 0.7;
307
+ }
308
+
309
+ .docket__close-button:active {
310
+ opacity: 0.5;
311
+ }
312
+
313
+ /* Responsive behavior */
314
+ @media (max-width: 1023px) {
315
+ .docket {
316
+ width: 384px;
317
+ }
318
+
319
+ .docket--collapsed {
320
+ display: none !important;
321
+ }
322
+
323
+ .docket--open {
324
+ display: flex !important;
325
+ }
326
+
327
+ .docket__collapsed-header {
328
+ display: flex;
329
+ width: 256px;
330
+ }
331
+
332
+ .docket__mobile-wrapper {
333
+ display: flex;
334
+ flex-direction: column;
335
+ gap: 0;
336
+ }
337
+
338
+ .docket__close-header {
339
+ display: block;
340
+ width: 141px;
341
+ margin-bottom: 0;
342
+ }
343
+
344
+ /* Remove gap between close header and docket */
345
+ .docket__mobile-wrapper .docket {
346
+ margin-top: 0;
347
+ }
348
+ }
349
+
350
+ @media (min-width: 1024px) {
351
+ .docket__collapsed-header,
352
+ .docket__close-header {
353
+ display: none;
354
+ }
355
+
356
+ .docket--collapsed,
357
+ .docket--open {
358
+ display: flex;
359
+ }
360
+ }