/* how-to-decode-instagram-shortcode-to-date — tool styles scoped to .tool-card */

.tool-card .header h1 { font-size: 32px; margin-bottom: 15px; }
.tool-card .header p { font-size: 16px; opacity: 0.95; }
.tool-card .section { margin-bottom: 40px; }
.tool-card .section h2 { color: #E1306C; font-size: 28px; margin-bottom: 20px; }
.tool-card .section h3 { color: #C13584; font-size: 22px; margin: 25px 0 15px 0; }
.tool-card .section p { color: #666; line-height: 1.8; margin-bottom: 15px; }
.tool-card .step-card {
            background: linear-gradient(135deg, #E1306C15 0%, #C1358415 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid #E1306C;
            margin-bottom: 20px;
        }
.tool-card .step-number {
            display: inline-block;
            background: #E1306C;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            font-weight: 700;
            margin-right: 15px;
            font-size: 18px;
        }
.tool-card .step-title {
            font-size: 20px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 12px;
        }
.tool-card .step-content {
            color: #666;
            line-height: 1.8;
            margin-left: 50px;
        }
.tool-card .code-block {
            background: #1e1e1e;
            border-radius: 8px;
            overflow: hidden;
            margin: 20px 0;
        }
.tool-card .code-header {
            background: #2d2d2d;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #404040;
        }
.tool-card .code-header span {
            color: #9cdcfe;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
.tool-card .code-header button {
            background: #E1306C;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            transition: background 0.2s;
        }
.tool-card .code-header button:hover { background: #C13584; }
.tool-card .code-block pre {
            margin: 0;
            padding: 20px;
            overflow-x: auto;
        }
.tool-card .code-block code {
            background: transparent;
            padding: 0;
            color: #d4d4d4;
            display: block;
            line-height: 1.6;
            font-family: 'Courier New', monospace;
            font-size: 14px;
        }
.tool-card .example-box {
            background: linear-gradient(135deg, #10b98115 0%, #05966915 100%);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #10b981;
            margin: 20px 0;
        }
.tool-card .example-box h4 {
            color: #10b981;
            margin-bottom: 15px;
            font-size: 18px;
        }
.tool-card .example-box code {
            background: #f8f9fa;
            padding: 2px 6px;
            border-radius: 3px;
            color: #e83e8c;
            font-family: 'Courier New', monospace;
        }
.tool-card .tip-box {
            background: #f0fff4;
            border-left: 4px solid #38a169;
            padding: 15px 20px;
            border-radius: 8px;
            margin: 15px 0;
        }
.tool-card .tip-box h4 {
            color: #38a169;
            margin-bottom: 10px;
            font-size: 16px;
        }
.tool-card .tip-box p {
            color: #22543d;
            margin: 5px 0;
            font-size: 14px;
        }
.tool-card .tool-section {
            background: linear-gradient(135deg, #E1306C15 0%, #C1358415 100%);
            padding: 30px;
            border-radius: 12px;
            border: 2px solid #E1306C;
            margin: 30px 0;
        }
.tool-card .tool-section h3 {
            color: #E1306C;
            margin-bottom: 20px;
        }
.tool-card input[type="text"] {
            width: 100%;
            padding: 14px;
            border: 2px solid #E1306C;
            border-radius: 8px;
            font-size: 15px;
            font-family: monospace;
            margin-bottom: 15px;
        }
.tool-card .btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
        }
.tool-card .result {
            display: none;
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
.tool-card .result-item {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 10px;
        }
.tool-card .result-label {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
            text-transform: uppercase;
        }
.tool-card .result-value {
            font-weight: 600;
            color: #1a202c;
            font-size: 16px;
        }
.tool-card .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
.tool-card .comparison-table thead {
            background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
            color: white;
        }
.tool-card .comparison-table th {
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
.tool-card .comparison-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
.tool-card .comparison-table tbody tr:hover {
            background: #f8f9fa;
        }
.tool-card .related-tools {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
.tool-card .related-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #e2e8f0;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }
.tool-card .related-card:hover {
            border-color: #E1306C;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(225,48,108,0.15);
        }
.tool-card .related-card h4 {
            color: #E1306C;
            margin-bottom: 8px;
            font-size: 16px;
        }
.tool-card .related-card p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }
.tool-card .seo-content {
            margin-top: 40px;
            line-height: 1.9;
            color: #444;
            font-size: 15px;
        }
.tool-card .seo-content .container {
            padding: 0 20px;
        }
.tool-card .seo-content h2, .tool-card .seo-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #667eea;
        }
.tool-card .seo-content p {
            margin-bottom: 14px;
            color: #555;
        }
.tool-card .seo-content ul, .tool-card .seo-content ol {
            margin-left: 22px;
            margin-bottom: 16px;
        }
.tool-card .seo-content li {
            margin-bottom: 8px;
            color: #555;
        }
.tool-card .examples-content {
            margin-top: 40px;
            line-height: 1.9;
            color: #444;
            font-size: 15px;
        }
.tool-card .examples-content .container {
            padding: 0 20px;
        }
.tool-card .examples-content h2, .tool-card .examples-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #667eea;
        }
.tool-card .examples-content p {
            margin-bottom: 14px;
            color: #555;
        }
.tool-card .examples-content pre {
            background: #1e1e2e;
            color: #cdd6f4;
            padding: 18px 20px;
            border-radius: 8px;
            overflow-x: auto;
            margin-bottom: 18px;
            font-size: 13px;
            line-height: 1.6;
        }
.tool-card .examples-content code {
            font-family: 'Fira Code', 'Cascadia Code', 'Monaco', 'Menlo', monospace;
        }
.tool-card .examples-content ul, .tool-card .examples-content ol {
            margin-left: 22px;
            margin-bottom: 16px;
        }
.tool-card .examples-content li {
            margin-bottom: 8px;
            color: #555;
        }
